ソースを参照

[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 -> "*="
       | OpMult -> "*="
       | OpDiv -> "/="
       | OpDiv -> "/="
       | OpSub -> "-="
       | OpSub -> "-="
+      | OpAnd -> "&="
+      | OpOr -> "|="
+      | OpXor -> "^="
       | OpAssign -> "="
       | OpAssign -> "="
       | OpShl -> "<<="
       | OpShl -> "<<="
       | OpShr -> ">>="
       | OpShr -> ">>="