diff options
author | Mark Spruiell <mes@zeroc.com> | 2003-10-23 03:24:19 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2003-10-23 03:24:19 +0000 |
commit | b65cd40d85bc7bd62ad5042f1644710f08264e53 (patch) | |
tree | 4acbdc8a2583379efcacf91f7d6b8d399ba39149 /cpp/src/Transform/Node.h | |
parent | adding support for dictionary addition, sequence length changes (diff) | |
download | ice-b65cd40d85bc7bd62ad5042f1644710f08264e53.tar.bz2 ice-b65cd40d85bc7bd62ad5042f1644710f08264e53.tar.xz ice-b65cd40d85bc7bd62ad5042f1644710f08264e53.zip |
adding != operator
Diffstat (limited to 'cpp/src/Transform/Node.h')
-rw-r--r-- | cpp/src/Transform/Node.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Transform/Node.h b/cpp/src/Transform/Node.h index 54d0333eeb7..dcebd33cdaa 100644 --- a/cpp/src/Transform/Node.h +++ b/cpp/src/Transform/Node.h @@ -69,7 +69,7 @@ enum BinaryOperator BinOpOr, BinOpAnd, BinOpMul, BinOpDiv, BinOpMod, BinOpAdd, BinOpSub, - BinOpLess, BinOpGreater, BinOpLessEq, BinOpGrEq, BinOpEq + BinOpLess, BinOpGreater, BinOpLessEq, BinOpGrEq, BinOpEq, BinOpNotEq }; class BinaryNode : public Node |