[Lldb-commits] [lldb] e9326ed - [lldb/Reproducer] s/nullptr_t/std::nullptr_t/

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Tue Jan 28 15:15:25 PST 2020


Author: Jonas Devlieghere
Date: 2020-01-28T15:15:13-08:00
New Revision: e9326ed9067834dca0a1fe752a55c534ed938f8c

URL: https://github.com/llvm/llvm-project/commit/e9326ed9067834dca0a1fe752a55c534ed938f8c
DIFF: https://github.com/llvm/llvm-project/commit/e9326ed9067834dca0a1fe752a55c534ed938f8c.diff

LOG: [lldb/Reproducer] s/nullptr_t/std::nullptr_t/

Fixes error: unknown type name 'nullptr_t'; did you mean
'std::nullptr_t'.

Added: 
    

Modified: 
    lldb/include/lldb/Utility/ReproducerInstrumentation.h

Removed: 
    


################################################################################
diff  --git a/lldb/include/lldb/Utility/ReproducerInstrumentation.h b/lldb/include/lldb/Utility/ReproducerInstrumentation.h
index 91420a147834..2698338a38bb 100644
--- a/lldb/include/lldb/Utility/ReproducerInstrumentation.h
+++ b/lldb/include/lldb/Utility/ReproducerInstrumentation.h
@@ -44,8 +44,8 @@ inline void stringify_append<char>(llvm::raw_string_ostream &ss,
 }
 
 template <>
-inline void stringify_append<nullptr_t>(llvm::raw_string_ostream &ss,
-                                        const nullptr_t &t) {
+inline void stringify_append<std::nullptr_t>(llvm::raw_string_ostream &ss,
+                                             const std::nullptr_t &t) {
   ss << "\"nullptr\"";
 }
 


        


More information about the lldb-commits mailing list