From e9326ed9067834dca0a1fe752a55c534ed938f8c Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Tue, 28 Jan 2020 15:14:40 -0800 Subject: [PATCH] [lldb/Reproducer] s/nullptr_t/std::nullptr_t/ Fixes error: unknown type name 'nullptr_t'; did you mean 'std::nullptr_t'. --- lldb/include/lldb/Utility/ReproducerInstrumentation.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/include/lldb/Utility/ReproducerInstrumentation.h b/lldb/include/lldb/Utility/ReproducerInstrumentation.h index 91420a1..2698338 100644 --- a/lldb/include/lldb/Utility/ReproducerInstrumentation.h +++ b/lldb/include/lldb/Utility/ReproducerInstrumentation.h @@ -44,8 +44,8 @@ inline void stringify_append(llvm::raw_string_ostream &ss, } template <> -inline void stringify_append(llvm::raw_string_ostream &ss, - const nullptr_t &t) { +inline void stringify_append(llvm::raw_string_ostream &ss, + const std::nullptr_t &t) { ss << "\"nullptr\""; } -- 2.7.4