소스 검색

[cpp] Some missing AssignOperators

Hugh 9 년 전
부모
커밋
5eee4f6591
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      gencpp.ml

+ 3 - 0
gencpp.ml

@@ -2437,6 +2437,9 @@ let gen_cpp_ast_expression_tree ctx tree =
       | OpMult -> "*="
       | OpDiv -> "/="
       | OpSub -> "-="
+      | OpAnd -> "&="
+      | OpOr -> "|="
+      | OpXor -> "^="
       | OpAssign -> "="
       | OpShl -> "<<="
       | OpShr -> ">>="