summaryrefslogtreecommitdiffhomepage
path: root/flowgraph
diff options
context:
space:
mode:
Diffstat (limited to 'flowgraph')
-rw-r--r--flowgraph/node.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/flowgraph/node.h b/flowgraph/node.h
index d4a1306..9ae5479 100644
--- a/flowgraph/node.h
+++ b/flowgraph/node.h
@@ -63,7 +63,7 @@ namespace FlowGraph {
{}
};
- enum class JumpVariant
+ enum class JumpVariant: int
{
Unconditional,
GT,
@@ -110,7 +110,8 @@ namespace FlowGraph {
{}
};
- enum class UnaryOperationType {
+ enum class UnaryOperationType: int
+ {
Increment,
Decrement,
Negate
@@ -128,7 +129,8 @@ namespace FlowGraph {
UnaryOperationType m_type;
};
- enum class BinaryOperationType {
+ enum class BinaryOperationType: int
+ {
Add,
Subtract,
Multiply,