diff options
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r-- | src/passes/Print.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp index 4bcc042a1..ab5ef514f 100644 --- a/src/passes/Print.cpp +++ b/src/passes/Print.cpp @@ -254,7 +254,7 @@ void TypeNamePrinter::print(HeapType type) { void TypeNamePrinter::print(const Tuple& tuple) { auto sep = ""; - for (auto type : tuple.types) { + for (auto type : tuple) { os << sep; sep = "_"; print(type); |