summaryrefslogtreecommitdiffstats
path: root/source/slang/mangle.h
diff options
context:
space:
mode:
authorYong He <yongh@outlook.com>2018-01-09 13:26:42 -0800
committerYong He <yonghe@outlook.com>2018-01-12 23:55:38 -0500
commit4b284daeb0cc3f6df0835befad4326c81abeb374 (patch)
treead8d29e14cc483f2eb66bcae7b0f7ffdfd574b86 /source/slang/mangle.h
parentdf6eeb93c1718334779ae328db277cdf7a9d7b04 (diff)
Support nested generics
fixes #362
Diffstat (limited to 'source/slang/mangle.h')
-rw-r--r--source/slang/mangle.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/slang/mangle.h b/source/slang/mangle.h
index 45b1d4bd1..8f4c6d1d0 100644
--- a/source/slang/mangle.h
+++ b/source/slang/mangle.h
@@ -19,6 +19,9 @@ namespace Slang
String getMangledNameForConformanceWitness(
DeclRef<Decl> sub,
DeclRef<Decl> sup);
+ String getMangledNameForConformanceWitness(
+ DeclRef<Decl> sub,
+ Type* sup);
String getMangledTypeName(Type* type);
}