diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-08 11:17:00 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-08 11:17:00 -0700 |
commit | 53a569b8ee7960fb2c648374f746af167ed7ef68 (patch) | |
tree | dcee9bae7dcf403f691ecce624ceedf98d4b5dd2 /cpp/010vm | |
parent | 22a4c1d3bb3a27ff7bcfa262d785b92428f14f76 (diff) | |
download | mu-53a569b8ee7960fb2c648374f746af167ed7ef68.tar.gz |
1043 - clean up indent in generated mu.cc
Diffstat (limited to 'cpp/010vm')
-rw-r--r-- | cpp/010vm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/cpp/010vm b/cpp/010vm index 826c2069..a21655ed 100644 --- a/cpp/010vm +++ b/cpp/010vm @@ -58,7 +58,7 @@ struct property { // Locations refer to a common 'memory'. Each location can store a number. unordered_map<int, int> Memory; :(before "End Setup") - Memory.clear(); +Memory.clear(); :(after "Types") // Mu types encode how the numbers stored in different parts of memory are @@ -94,7 +94,7 @@ void setup_types() { // End Mu Types Initialization. } :(before "End One-time Setup") - setup_types(); +setup_types(); :(before "End Types") // You can construct arbitrary new types. Types are either 'records', containing @@ -138,14 +138,14 @@ void setup_recipes() { //: startup. Later layers will carefully undo each test's additions after //: itself. :(before "End One-time Setup") - setup_recipes(); - // End Load Recipes - // give tests a consistent starting point - assert(Next_recipe_number < 100); - Next_recipe_number = 100; - delete Trace_stream; Trace_stream = new trace_stream; +setup_recipes(); +// End Load Recipes +// give tests a consistent starting point +assert(Next_recipe_number < 100); +Next_recipe_number = 100; +delete Trace_stream; Trace_stream = new trace_stream; :(before "End Setup") - Next_recipe_number = 100; // consistent new numbers for each test +Next_recipe_number = 100; // consistent new numbers for each test |