summaryrefslogtreecommitdiff
path: root/src/trans/mangling.cpp
diff options
context:
space:
mode:
authorJohn Hodge (bugs) <tpg@mutabah.net>2017-06-04 21:23:24 +0800
committerJohn Hodge (bugs) <tpg@mutabah.net>2017-06-04 21:23:24 +0800
commit83dbb728f62306d2e43b2688dd0f2d320fd5b038 (patch)
treea064267bdf8d0455ed725140abfcbed3e04b2d4a /src/trans/mangling.cpp
parent0b9fd0014c8f32ecf299dae2ad1811dfb484af46 (diff)
parentf19c75571c48588fb3816e8eb5b96f03474fbdf5 (diff)
downloadmrust-83dbb728f62306d2e43b2688dd0f2d320fd5b038.tar.gz
Merge branch 'master' of https://github.com/thepowersgang/mrustc
Diffstat (limited to 'src/trans/mangling.cpp')
-rw-r--r--src/trans/mangling.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trans/mangling.cpp b/src/trans/mangling.cpp
index 4ea56581..0f3acfd9 100644
--- a/src/trans/mangling.cpp
+++ b/src/trans/mangling.cpp
@@ -148,7 +148,7 @@ namespace {
),
(Tuple,
return FMT_CB(ss,
- ss << "$T";
+ ss << "$T" << te.size();
for(const auto& t : te)
ss << "_" << Trans_Mangle(t);
);