about summary refs log tree commit diff stats
path: root/030container.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-05-06 08:33:15 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-05-06 08:33:15 -0700
commit43b866d1997e82bfebd6c40881e33a0edd2bf340 (patch)
tree565c40a8dce9d5b831c38b5c6c3800873090dfd4 /030container.cc
parent3473c63ad94756d6f79ddd5c48813e79d87429ca (diff)
downloadmu-43b866d1997e82bfebd6c40881e33a0edd2bf340.tar.gz
2932
More consistent labeling of waypoints. Use types only when you need to
distinguish between function overloadings. Otherwise just use variable
names unless it's truly not apparent what they are (like that the result
is a recipe in "End Rewrite Instruction").
Diffstat (limited to '030container.cc')
-rw-r--r--030container.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/030container.cc b/030container.cc
index 3e779871..a31d409e 100644
--- a/030container.cc
+++ b/030container.cc
@@ -122,7 +122,7 @@ Container_metadata = Container_metadata_snapshot;
 
 //: do no work in size_of, simply lookup Container_metadata
 
-:(before "End size_of(reagent) Cases")
+:(before "End size_of(reagent r) Cases")
 if (r.metadata.size) return r.metadata.size;
 
 :(before "End size_of(type) Cases")