aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonas Devlieghere <jonas@devlieghere.com>2020-01-28 15:14:40 -0800
committerJonas Devlieghere <jonas@devlieghere.com>2020-01-28 15:15:13 -0800
commite9326ed9067834dca0a1fe752a55c534ed938f8c (patch)
tree5aa98ca55a76acca89689631e9c246d7e44f6d00
parent19580c3755a1dc198005839a73a7bad5c108f203 (diff)
downloadllvm-e9326ed9067834dca0a1fe752a55c534ed938f8c.zip
llvm-e9326ed9067834dca0a1fe752a55c534ed938f8c.tar.gz
llvm-e9326ed9067834dca0a1fe752a55c534ed938f8c.tar.bz2
[lldb/Reproducer] s/nullptr_t/std::nullptr_t/
Fixes error: unknown type name 'nullptr_t'; did you mean 'std::nullptr_t'.
-rw-r--r--lldb/include/lldb/Utility/ReproducerInstrumentation.h4
1 files 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<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\"";
}