summaryrefslogtreecommitdiffstats
path: root/source/slang/mangle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/mangle.cpp')
-rw-r--r--source/slang/mangle.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/slang/mangle.cpp b/source/slang/mangle.cpp
index e2db1b456..721072b82 100644
--- a/source/slang/mangle.cpp
+++ b/source/slang/mangle.cpp
@@ -124,14 +124,6 @@ namespace Slang
{
emitQualifiedName(context, declRefType->declRef);
}
- else if (auto tupleType = dynamic_cast<FilteredTupleType*>(type))
- {
- // TODO: this doesn't handle the possibility of multiple different
- // filtered versions of the same type...
- emitRaw(context, "t");
- emitType(context, tupleType->originalType);
- emitRaw(context, "_");
- }
else
{
SLANG_UNEXPECTED("unimplemented case in mangling");