summaryrefslogtreecommitdiff
path: root/source/slang/slang-lookup.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-lookup.cpp')
-rw-r--r--source/slang/slang-lookup.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/slang/slang-lookup.cpp b/source/slang/slang-lookup.cpp
index c560b67f9..9ac5fc940 100644
--- a/source/slang/slang-lookup.cpp
+++ b/source/slang/slang-lookup.cpp
@@ -174,7 +174,7 @@ static void _lookUpDirectAndTransparentMembers(
{
// Look up the declarations with the chosen name in the container.
Decl* firstDecl = nullptr;
- containerDecl->getMemberDictionary().TryGetValue(name, firstDecl);
+ containerDecl->getMemberDictionary().tryGetValue(name, firstDecl);
// Now iterate over those declarations (if any) and see if
// we find any that meet our filtering criteria.