nullptr printing - update for a change to clang type printing that now uses "std...
authorDavid Blaikie <dblaikie@gmail.com>
Tue, 21 Sep 2021 18:38:33 +0000 (11:38 -0700)
committerDavid Blaikie <dblaikie@gmail.com>
Tue, 21 Sep 2021 18:50:24 +0000 (11:50 -0700)
lldb/test/Shell/SymbolFile/NativePDB/function-types-builtins.cpp

index 030ae95..75f9a02 100644 (file)
@@ -210,9 +210,9 @@ auto null = &nullary;
 // FIXME: These currently don't work because clang-cl emits incorrect debug info
 // for std::nullptr_t.  We should fix these in clang-cl.
 auto rae = &unaryret<decltype(nullptr), 29>;
-// CHECK: (nullptr_t (*)()) rae = {{.*}}
+// CHECK: (std::nullptr_t (*)()) rae = {{.*}}
 auto aae = &unary<decltype(nullptr)>;
-// CHECK: (void (*)(nullptr_t)) aae = {{.*}}
+// CHECK: (void (*)(std::nullptr_t)) aae = {{.*}}
 
 int main(int argc, char **argv) {
   return 0;