diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-07 23:48:22 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-07 23:57:40 -0700 |
commit | 9ea7648336251d440a9cd8d91112254e8b38268c (patch) | |
tree | 8c2128b06e56b0c7d504076e49c4fcd5821356a2 /cpp/012transform | |
parent | f5f4b698533b3d7a5016d1d80c5d59e2c2d8ea6e (diff) | |
download | mu-9ea7648336251d440a9cd8d91112254e8b38268c.tar.gz |
1030 - better test isolation for break/loop
I've been resetting all recipes after every single test, but the arc version has shown that this gets slow all too quickly. And the longer I wait to fix it the harder it gets to fix. Already, boy, were this and the next couple of commits hard to track down.
Diffstat (limited to 'cpp/012transform')
-rw-r--r-- | cpp/012transform | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpp/012transform b/cpp/012transform index e9b74776..7fa979c7 100644 --- a/cpp/012transform +++ b/cpp/012transform @@ -16,6 +16,7 @@ vector<transform_fn> Transform; :(code) void transform_all() { +//? cout << "AAA transform_all\n"; //? 1 for (size_t t = 0; t < Transform.size(); ++t) { for (unordered_map<recipe_number, recipe>::iterator p = Recipe.begin(); p != Recipe.end(); ++p) { recipe& r = p->second; |