Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1248)

Unified Diff: minidump/minidump_thread_writer.cc

Issue 656703002: Convert NULL to nullptr (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Fix 80-column violations Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « minidump/minidump_thread_writer.h ('k') | minidump/minidump_thread_writer_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: minidump/minidump_thread_writer.cc
diff --git a/minidump/minidump_thread_writer.cc b/minidump/minidump_thread_writer.cc
index baccfb16f65167b58db74c1f43cc3f6470132496..8f0e0856db120624dbfdc466f5c10355d3c37dfe 100644
--- a/minidump/minidump_thread_writer.cc
+++ b/minidump/minidump_thread_writer.cc
@@ -22,7 +22,7 @@
namespace crashpad {
MinidumpThreadWriter::MinidumpThreadWriter()
- : MinidumpWritable(), thread_(), stack_(NULL), context_(NULL) {
+ : MinidumpWritable(), thread_(), stack_(nullptr), context_(nullptr) {
}
const MINIDUMP_THREAD* MinidumpThreadWriter::MinidumpThread() const {
@@ -95,7 +95,7 @@ MinidumpThreadListWriter::MinidumpThreadListWriter()
: MinidumpStreamWriter(),
thread_list_base_(),
threads_(),
- memory_list_writer_(NULL) {
+ memory_list_writer_(nullptr) {
}
MinidumpThreadListWriter::~MinidumpThreadListWriter() {
« no previous file with comments | « minidump/minidump_thread_writer.h ('k') | minidump/minidump_thread_writer_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698