summaryrefslogtreecommitdiff
path: root/source/slang/slang-check.cpp
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2020-06-05 18:34:24 -0700
committerGitHub <noreply@github.com>2020-06-05 18:34:24 -0700
commit52026c7c26e48921fdf18b3f8cdacad77a792643 (patch)
treed439487223ee8ec4a2052d8855db310da878c001 /source/slang/slang-check.cpp
parent92fc3aaa835315ff08750c7b5a7498b7228e2c33 (diff)
parent43c146794aab638924d2ab838d10f8af2ebf02a7 (diff)
Merge branch 'master' into findtypebynamefix
Diffstat (limited to 'source/slang/slang-check.cpp')
-rw-r--r--source/slang/slang-check.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/source/slang/slang-check.cpp b/source/slang/slang-check.cpp
index 5b2b2b132..b86d90cec 100644
--- a/source/slang/slang-check.cpp
+++ b/source/slang/slang-check.cpp
@@ -196,19 +196,6 @@ namespace Slang
return func;
}
- TypeCheckingCache* Session::getTypeCheckingCache()
- {
- if (!typeCheckingCache)
- typeCheckingCache = new TypeCheckingCache();
- return typeCheckingCache;
- }
-
- void Session::destroyTypeCheckingCache()
- {
- delete typeCheckingCache;
- typeCheckingCache = nullptr;
- }
-
void checkTranslationUnit(
TranslationUnitRequest* translationUnit)
{