about summary refs log tree commit diff stats
path: root/012transform.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-03-07 00:36:55 -0800
committerKartik K. Agaram <vc@akkartik.com>2017-03-07 00:36:58 -0800
commit848ebc1e6335cd1a34e07662242a367fefbc5229 (patch)
treecd8bd1c747c1bc30857c2fca329013c05b933491 /012transform.cc
parent8ccf992d317a867f5e477b2dee5db90b2c5ded3a (diff)
downloadmu-848ebc1e6335cd1a34e07662242a367fefbc5229.tar.gz
3760 - force functions to use dependency-injection
This is the kind of check I want Mu to be anal about, not whitespace or
unused variables.
Diffstat (limited to '012transform.cc')
-rw-r--r--012transform.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/012transform.cc b/012transform.cc
index 2a2cfb9b..f62349fa 100644
--- a/012transform.cc
+++ b/012transform.cc
@@ -45,6 +45,7 @@ void initialize_transforms() {
 
 void transform_all() {
   trace(9990, "transform") << "=== transform_all()" << end();
+  // Begin transform_all
   for (int t = 0;  t < SIZE(Transform);  ++t) {
     for (map<recipe_ordinal, recipe>::iterator p = Recipe.begin();  p != Recipe.end();  ++p) {
       recipe& r = p->second;