diff options
| author | Roland Reichwein <mail@reichwein.it> | 2020-11-15 13:55:18 +0100 | 
|---|---|---|
| committer | Roland Reichwein <mail@reichwein.it> | 2020-11-15 13:55:18 +0100 | 
| commit | d07c5bc14edbe071ee7b4f47f174780e95e451aa (patch) | |
| tree | 889ed88ea6907119b75b7b76f616a604c9857e3d /flowgraph | |
| parent | 9e7f4c9d43b310c280cd6432cd4150411f4b914e (diff) | |
Simplify Asm construction
Diffstat (limited to 'flowgraph')
| -rw-r--r-- | flowgraph/node.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/flowgraph/node.h b/flowgraph/node.h index 98c684d..77395f0 100644 --- a/flowgraph/node.h +++ b/flowgraph/node.h @@ -174,7 +174,7 @@ namespace FlowGraph {   class DestroyScopeOp: public Node   {   public: -  DestroyScopeOp() {} +  DestroyScopeOp(LocalScope& scope) {}   };  } // namespace FlowGraph | 
