浏览代码

[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 -> ">>="