diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-24 22:24:39 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-24 22:24:39 -0700 |
commit | 0b0cfb6f1f4579eef463ffcb41ba782ddbd56035 (patch) | |
tree | 7bd0f3e1d769d0181f5699c26f2f31f874e49436 | |
parent | f539f89fb9e95d6452d577e7ab27dd5f619d5a4c (diff) | |
download | mu-0b0cfb6f1f4579eef463ffcb41ba782ddbd56035.tar.gz |
1188
-rw-r--r-- | cpp/035call | 6 | ||||
-rw-r--r-- | cpp/042new | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/cpp/035call b/cpp/035call index 2f9b0f15..0c84056e 100644 --- a/cpp/035call +++ b/cpp/035call @@ -48,9 +48,9 @@ struct routine { const vector<instruction>& steps() const; }; :(code) - routine::routine(recipe_number r) { - calls.push(call(r)); - } +routine::routine(recipe_number r) { + calls.push(call(r)); +} //:: now update routine's helpers diff --git a/cpp/042new b/cpp/042new index a980d8cb..d268e6ca 100644 --- a/cpp/042new +++ b/cpp/042new @@ -17,9 +17,9 @@ Memory_allocated_until = 1000; :(before "End routine Fields") size_t alloc; :(replace{} "routine::routine(recipe_number r)") - routine::routine(recipe_number r) :alloc(Memory_allocated_until) { - calls.push(call(r)); - } +routine::routine(recipe_number r) :alloc(Memory_allocated_until) { + calls.push(call(r)); +} //:: First handle 'type' operands. |