summaryrefslogtreecommitdiff
path: root/source/slang/lookup.h
diff options
context:
space:
mode:
authorTim Foley <tim.foley.is@gmail.com>2017-08-14 18:50:46 -0700
committerGitHub <noreply@github.com>2017-08-14 18:50:46 -0700
commitaeb247cdf02e4dcfc0bb6839cfd291be5128f8ad (patch)
tree7314b26e21ded966b6a4fe2430f0421c0c0970bd /source/slang/lookup.h
parentbb66d6eddd649d8861cecefa2d6ccb7a28a827bc (diff)
parent9885c972a6bfa6f856e505cdd90d9b71fdbdadaf (diff)
Merge pull request #159 from tfoleyNV/name-type
Name type
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