summaryrefslogtreecommitdiff
path: root/source/slang/lookup.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/lookup.h')
-rw-r--r--source/slang/lookup.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/slang/lookup.h b/source/slang/lookup.h
index 8710ac54f..b8223caa6 100644
--- a/source/slang/lookup.h
+++ b/source/slang/lookup.h
@@ -20,7 +20,7 @@ void buildMemberDictionary(ContainerDecl* decl);
LookupResult LookUp(
Session* session,
SemanticsVisitor* semantics,
- String const& name,
+ Name* name,
RefPtr<Scope> scope);
// perform lookup within the context of a particular container declaration,
@@ -28,7 +28,7 @@ LookupResult LookUp(
LookupResult LookUpLocal(
Session* session,
SemanticsVisitor* semantics,
- String const& name,
+ Name* name,
DeclRef<ContainerDecl> containerDeclRef);
// TODO: this belongs somewhere else