diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-03-14 22:52:35 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-03-14 22:52:35 -0700 |
commit | 275de0a1ced166edef6f48ab69f420d1fff77e5b (patch) | |
tree | 86358f1959cf157b38ce8c00e7e371c33ff66f6b /cpp/012run | |
parent | 0cc8fa9af894f1d8594173f3083acf5acfbebf3a (diff) | |
download | mu-275de0a1ced166edef6f48ab69f420d1fff77e5b.tar.gz |
925
Diffstat (limited to 'cpp/012run')
-rw-r--r-- | cpp/012run | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/012run b/cpp/012run index eec9b61c..4ffe558a 100644 --- a/cpp/012run +++ b/cpp/012run @@ -24,7 +24,7 @@ struct call { recipe_number running_recipe; size_t pc; // End Call Fields - call(recipe_number r) :running_recipe(r), pc(0), next_ingredient_to_process(0) {} + call(recipe_number r) :running_recipe(r), pc(0) {} }; typedef stack<call> call_stack; |