summaryrefslogtreecommitdiffhomepage
path: root/flowgraph/node.h
diff options
context:
space:
mode:
Diffstat (limited to 'flowgraph/node.h')
-rw-r--r--flowgraph/node.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/flowgraph/node.h b/flowgraph/node.h
index c1b7380..89f6088 100644
--- a/flowgraph/node.h
+++ b/flowgraph/node.h
@@ -145,7 +145,9 @@ namespace FlowGraph {
class BinaryOperation: public Node
{
public:
- BinaryOperation(BinaryOperationType type, Data& destination, Data& source0, Data& source1): m_type(type), m_destination(destination), m_source0(source0), m_source1(source1) {}
+ BinaryOperation(BinaryOperationType type, Data& destination, Data& source0, Data& source1):
+ m_type(type), m_destination(destination), m_source0(source0), m_source1(source1)
+ {}
private:
BinaryOperationType m_type;
Data m_destination;