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

Unified Diff: util/mac/mach_o_image_symbol_table_reader.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/mac/mach_o_image_symbol_table_reader.h ('k') | util/mac/process_reader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/mac/mach_o_image_symbol_table_reader.cc
diff --git a/util/mac/mach_o_image_symbol_table_reader.cc b/util/mac/mach_o_image_symbol_table_reader.cc
index 0b64fd460cf6a929421c1200c085343a4784856a..8db0109c541a16c7031d11d1dbc9ffb2a20d5f9e 100644
--- a/util/mac/mach_o_image_symbol_table_reader.cc
+++ b/util/mac/mach_o_image_symbol_table_reader.cc
@@ -266,7 +266,7 @@ MachOImageSymbolTableReader::LookUpExternalDefinedSymbol(
const auto& iterator = external_defined_symbols_.find(name);
if (iterator == external_defined_symbols_.end()) {
- return NULL;
+ return nullptr;
}
return &iterator->second;
}
« no previous file with comments | « util/mac/mach_o_image_symbol_table_reader.h ('k') | util/mac/process_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698