summaryrefslogtreecommitdiffstats
path: root/source/slang/slang-parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/slang/slang-parser.cpp')
-rw-r--r--source/slang/slang-parser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/slang/slang-parser.cpp b/source/slang/slang-parser.cpp
index f790cd4d2..5f9d5fbc4 100644
--- a/source/slang/slang-parser.cpp
+++ b/source/slang/slang-parser.cpp
@@ -1371,7 +1371,7 @@ namespace Slang
auto paramType = DeclRefType::create(
parser->astBuilder,
- DeclRef<Decl>(paramDecl, nullptr));
+ DeclRef<Decl>(paramDecl));
auto paramTypeExpr = parser->astBuilder->create<SharedTypeExpr>();
paramTypeExpr->loc = paramDecl->loc;
@@ -3107,7 +3107,7 @@ namespace Slang
parser->FillPosition(paramConstraint);
// substitution needs to be filled during check
- DeclRefType* paramType = DeclRefType::create(parser->astBuilder, DeclRef<Decl>(decl, nullptr));
+ DeclRefType* paramType = DeclRefType::create(parser->astBuilder, DeclRef<Decl>(decl));
SharedTypeExpr* paramTypeExpr = parser->astBuilder->create<SharedTypeExpr>();
paramTypeExpr->loc = decl->loc;
@@ -4320,7 +4320,7 @@ namespace Slang
{
// TODO(JS):
// Is it valid to always have empty substitution set here?
- DeclRef<ContainerDecl> declRef(aggTypeDecl, SubstitutionSet());
+ DeclRef<ContainerDecl> declRef(aggTypeDecl);
auto lookupResult = lookUpDirectAndTransparentMembers(
parser->astBuilder,