diff options
| author | Roland Reichwein <mail@reichwein.it> | 2020-11-07 21:55:45 +0100 | 
|---|---|---|
| committer | Roland Reichwein <mail@reichwein.it> | 2020-11-07 21:55:45 +0100 | 
| commit | 5c7df4f7b09d138df58f720260306afdf0f6713a (patch) | |
| tree | 4e81ef887606486d4729204d629a5ad029b14256 /flowgraph | |
| parent | e7d51fff32ea247fd35b56fc7cf5ce06df5dc6bf (diff) | |
Make "add" result
Diffstat (limited to 'flowgraph')
| -rw-r--r-- | flowgraph/node.h | 4 | 
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; | 
