diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-03-16 21:08:28 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-03-16 21:08:28 -0700 |
commit | 37e4573b9382707a0c345246d7507dc269bd0df3 (patch) | |
tree | 5c7ee81e1c665337550f40e5b0f4e76505e41b7b /cpp/010vm | |
parent | 64cf0a5950929e678ef9c0a6837ed59a1ca1661d (diff) | |
download | mu-37e4573b9382707a0c345246d7507dc269bd0df3.tar.gz |
934 - extensible transform framework for mu's lightweight tools
Diffstat (limited to 'cpp/010vm')
-rw-r--r-- | cpp/010vm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/010vm b/cpp/010vm index 53496fde..a8dd451a 100644 --- a/cpp/010vm +++ b/cpp/010vm @@ -12,6 +12,7 @@ int Next_recipe_number = 1; struct recipe { string name; vector<instruction> steps; + // End Recipe Fields }; :(before "struct recipe") |