Browse Source

[cpp] Some missing AssignOperators

Hugh 9 năm trước cách đây
mục cha
commit
5eee4f6591
1 tập tin đã thay đổi với 3 bổ sung0 xóa
  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 -> ">>="