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

Unified Diff: util/mach/exc_client_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_client_variants.h ('k') | util/mach/exc_client_variants_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/mach/exc_client_variants.cc
diff --git a/util/mach/exc_client_variants.cc b/util/mach/exc_client_variants.cc
index 46a9f50c71252ef3c260b077c2e163c197a7c8cd..0c51bc3440b8c3831f5ec4e8fbfc59696c5a39ea 100644
--- a/util/mach/exc_client_variants.cc
+++ b/util/mach/exc_client_variants.cc
@@ -42,7 +42,7 @@ kern_return_t UniversalExceptionRaise(exception_behavior_t behavior,
// needed.
std::vector<exception_data_type_t> small_code_vector;
- exception_data_t small_code = NULL;
+ exception_data_t small_code = nullptr;
if ((behavior & MACH_EXCEPTION_CODES) == 0 && code_count) {
small_code_vector.reserve(code_count);
for (size_t code_index = 0; code_index < code_count; ++code_index) {
« no previous file with comments | « util/mach/exc_client_variants.h ('k') | util/mach/exc_client_variants_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698