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

Unified Diff: util/mac/mach_o_image_segment_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_segment_reader.h ('k') | util/mac/mach_o_image_symbol_table_reader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: util/mac/mach_o_image_segment_reader.cc
diff --git a/util/mac/mach_o_image_segment_reader.cc b/util/mac/mach_o_image_segment_reader.cc
index 3a2c37bf051e47c8b9340abfd044396a8aeaa3dc..58f850639676c3ece904e827d20024d856430052 100644
--- a/util/mac/mach_o_image_segment_reader.cc
+++ b/util/mac/mach_o_image_segment_reader.cc
@@ -199,7 +199,7 @@ const process_types::section* MachOImageSegmentReader::GetSectionByName(
const auto& iterator = section_map_.find(section_name);
if (iterator == section_map_.end()) {
- return NULL;
+ return nullptr;
}
return GetSectionAtIndex(iterator->second, address);
« no previous file with comments | « util/mac/mach_o_image_segment_reader.h ('k') | util/mac/mach_o_image_symbol_table_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698