We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9fecea commit 14d57e2Copy full SHA for 14d57e2
clang-tools-extra/include-cleaner/unittests/WalkASTTest.cpp
@@ -557,7 +557,7 @@ TEST(WalkAST, FriendDecl) {
557
}
558
559
TEST(WalkAST, OperatorNewDelete) {
560
- testWalk("void* $explicit^operator new(unsigned long, void*);",
+ testWalk("void* $explicit^operator new(decltype(sizeof(int)), void*);",
561
"struct Bar { void foo() { Bar b; ^new (&b) Bar; } };");
562
testWalk("struct A { static void $explicit^operator delete(void*); };",
563
"void foo() { A a; ^delete &a; }");
0 commit comments