Skip to content

Commit 40e971a

Browse files
committed
nullptr printing - update for a change to clang type printing that now uses "std::nullptr_t"
1 parent 9149ae0 commit 40e971a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,9 +210,9 @@ auto null = &nullary;
210210
// FIXME: These currently don't work because clang-cl emits incorrect debug info
211211
// for std::nullptr_t. We should fix these in clang-cl.
212212
auto rae = &unaryret<decltype(nullptr), 29>;
213-
// CHECK: (nullptr_t (*)()) rae = {{.*}}
213+
// CHECK: (std::nullptr_t (*)()) rae = {{.*}}
214214
auto aae = &unary<decltype(nullptr)>;
215-
// CHECK: (void (*)(nullptr_t)) aae = {{.*}}
215+
// CHECK: (void (*)(std::nullptr_t)) aae = {{.*}}
216216

217217
int main(int argc, char **argv) {
218218
return 0;

0 commit comments

Comments
 (0)