diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-03-26 21:47:29 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-03-26 21:47:29 -0700 |
commit | 7e9c69251b700dbdec47dee47f37ba1194ad88e9 (patch) | |
tree | 9ba03cb52d5318f3f66de65887520ce92fc30345 /cpp/013run | |
parent | f608504a44b9b47682f336f5b6357b8993d9bb0d (diff) | |
download | mu-7e9c69251b700dbdec47dee47f37ba1194ad88e9.tar.gz |
983 - arc 'integer-array' => c++ 'array:integer'
Diffstat (limited to 'cpp/013run')
-rw-r--r-- | cpp/013run | 3 |
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; } |