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

Unified Diff: util/mach/exc_server_variants.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 | « util/mach/exc_server_variants.h ('k') | util/mach/exc_server_variants_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/mach/exc_server_variants.cc
diff --git a/util/mach/exc_server_variants.cc b/util/mach/exc_server_variants.cc
index f8d7f4930ff9cd2048ca3eea20da3ef49038ce78..4c2fecee567196c3154f750aff1da4b55ecd608b 100644
--- a/util/mach/exc_server_variants.cc
+++ b/util/mach/exc_server_variants.cc
@@ -495,9 +495,9 @@ kern_return_t SimplifiedExcServer::CatchExceptionRaise(
code,
code_count,
&flavor,
- NULL,
+ nullptr,
0,
- NULL,
+ nullptr,
&new_state_count,
destroy_request);
}
@@ -582,9 +582,9 @@ kern_return_t SimplifiedMachExcServer::CatchMachExceptionRaise(
code,
code_count,
&flavor,
- NULL,
+ nullptr,
0,
- NULL,
+ nullptr,
&new_state_count,
destroy_request);
}
@@ -713,7 +713,7 @@ kern_return_t UniversalMachExcServer::CatchException(
thread,
task,
exception,
- code_count ? &mach_codes[0] : NULL,
+ code_count ? &mach_codes[0] : nullptr,
code_count,
flavor,
old_state,
« no previous file with comments | « util/mach/exc_server_variants.h ('k') | util/mach/exc_server_variants_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698