about summary refs log tree commit diff stats
path: root/030container.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-07-25 20:22:32 -0700
committerKartik Agaram <vc@akkartik.com>2018-07-25 20:22:32 -0700
commitd671148d99e35b7643068d3ea59babaf7ce336e8 (patch)
tree27de9c79ad745f627a44aaeabad2b7b27f45fcb7 /030container.cc
parentfb5a590d6739c55f0e7fbffe1e80f426cbdbc369 (diff)
downloadmu-d671148d99e35b7643068d3ea59babaf7ce336e8.tar.gz
4412
Drop names of unused arguments.
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 fe8aaeb5..257f5fe0 100644
--- a/030container.cc
+++ b/030container.cc
@@ -546,7 +546,7 @@ Transform.push_back(expand_type_abbreviations_in_containers);  // idempotent
 :(code)
 // extremely inefficient; we process all types over and over again, once for every single recipe
 // but it doesn't seem to cause any noticeable slowdown
-void expand_type_abbreviations_in_containers(vestigial const recipe_ordinal r) {
+void expand_type_abbreviations_in_containers(vestigial const recipe_ordinal) {
   for (map<type_ordinal, type_info>::iterator p = Type.begin();  p != Type.end();  ++p) {
     for (int i = 0;  i < SIZE(p->second.elements);  ++i)
       expand_type_abbreviations(p->second.elements.at(i).type);