Skip to content

Commit 5d77bac

Browse files
committed
Fix signature for NamespaceDecl::Create
1 parent 49500fe commit 5d77bac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libclc/utils/libclc-remangler/LibclcRemangler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ class Remangler {
596596
SpvNamespace = NamespaceDecl::Create(
597597
*ContextAST, ContextAST->getTranslationUnitDecl(), false, SL, SL,
598598
&ContextAST->Idents.get("__spv", tok::TokenKind::identifier),
599-
nullptr);
599+
nullptr, false);
600600
std::string StructName{KNN->DataStr};
601601
StructName.erase(0, StructName.find_first_not_of("__spv::"));
602602
auto *II =

0 commit comments

Comments
 (0)