diff options
Diffstat (limited to 'flowgraph/node.h')
-rw-r--r-- | flowgraph/node.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/flowgraph/node.h b/flowgraph/node.h index 6a3ef14..def3c04 100644 --- a/flowgraph/node.h +++ b/flowgraph/node.h @@ -117,9 +117,9 @@ namespace FlowGraph { enum class UnaryOperationType: int { - Increment, - Decrement, - Negate, + LogicalNot, + BitwiseNot, + Minus, }; class UnaryOperation: public Node |