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 /cpp/042new | |
parent | f539f89fb9e95d6452d577e7ab27dd5f619d5a4c (diff) | |
download | mu-0b0cfb6f1f4579eef463ffcb41ba782ddbd56035.tar.gz |
1188
Diffstat (limited to 'cpp/042new')
-rw-r--r-- | cpp/042new | 6 |
1 files changed, 3 insertions, 3 deletions
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. |