summaryrefslogtreecommitdiff
path: root/source/slang/type-defs.h
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2018-01-21 16:26:52 -0800
committerTim Foley <tfoleyNV@users.noreply.github.com>2018-01-21 16:26:52 -0800
commit8196dc4a684a75344e507697273e2123af97b979 (patch)
treedbee3f92a10f15a9f7202010e1683b369c38ba15 /source/slang/type-defs.h
parent4044a1d3a0605198465a7eb6e0e3c1f8b1a3c298 (diff)
specialize witness tables when needed when specializing `lookup_witness_table` instruction. (#376)
Diffstat (limited to 'source/slang/type-defs.h')
-rw-r--r--source/slang/type-defs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/slang/type-defs.h b/source/slang/type-defs.h
index c4ec09f1d..db9630c0e 100644
--- a/source/slang/type-defs.h
+++ b/source/slang/type-defs.h
@@ -36,6 +36,7 @@ public:
protected:
virtual bool EqualsImpl(Type * type) override;
+ virtual RefPtr<Val> SubstituteImpl(SubstitutionSet subst, int* ioDiff) override;
virtual Type* CreateCanonicalType() override;
virtual int GetHashCode() override;
)