about summary refs log tree commit diff stats
path: root/cpp/013run
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-03-26 21:47:29 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-03-26 21:47:29 -0700
commit7e9c69251b700dbdec47dee47f37ba1194ad88e9 (patch)
tree9ba03cb52d5318f3f66de65887520ce92fc30345 /cpp/013run
parentf608504a44b9b47682f336f5b6357b8993d9bb0d (diff)
downloadmu-7e9c69251b700dbdec47dee47f37ba1194ad88e9.tar.gz
983 - arc 'integer-array' => c++ 'array:integer'
Diffstat (limited to 'cpp/013run')
-rw-r--r--cpp/013run3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpp/013run b/cpp/013run
index 8456a7c0..e811d96d 100644
--- a/cpp/013run
+++ b/cpp/013run
@@ -150,8 +150,7 @@ size_t size_of(const reagent& r) {
   return size_of(r.types);
 }
 size_t size_of(const vector<type_number>& types) {
-  type_info t = Type[types[0]];
-  // End size_of Cases.
+  // End size_of(types) Cases.
   return 1;
 }