diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-17 19:48:04 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-17 20:01:08 -0700 |
commit | 7f931ef0f27f2815ca435bd63f3aa77329c2f096 (patch) | |
tree | f8d5643e54094315927083a9159de1c9bcb05906 /cpp/020run | |
parent | caec3c16d0b0ae0568aa2b6de16510cc8fb89bb2 (diff) | |
download | mu-7f931ef0f27f2815ca435bd63f3aa77329c2f096.tar.gz |
1087 - mu files can now define containers and exclusive containers
Diffstat (limited to 'cpp/020run')
-rw-r--r-- | cpp/020run | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/cpp/020run b/cpp/020run index 1de1c6ae..400524e2 100644 --- a/cpp/020run +++ b/cpp/020run @@ -125,7 +125,9 @@ void load(string filename) { //: On startup, load everything in core.mu :(before "End Load Recipes") load("core.mu"); -recently_added_recipes.clear(); // freeze everything so it doesn't get cleared by tests +// freeze everything so it doesn't get cleared by tests +recently_added_recipes.clear(); +recently_added_types.clear(); :(code) // helper for tests |