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

Unified Diff: util/mac/mach_o_image_symbol_table_reader.h

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.cc ('k') | util/mac/mach_o_image_symbol_table_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.h
diff --git a/util/mac/mach_o_image_symbol_table_reader.h b/util/mac/mach_o_image_symbol_table_reader.h
index 1dc2ed69b93b6c11903decc928a3afc2ecb1898d..58741593523da3511c01d465281f17d034a3f478 100644
--- a/util/mac/mach_o_image_symbol_table_reader.h
+++ b/util/mac/mach_o_image_symbol_table_reader.h
@@ -81,7 +81,7 @@ class MachOImageSymbolTableReader {
//! the symbol table.
//! \param[in] dysymtab_command The `LC_DYSYMTAB` load command that identifies
//! dynamic symbol information within the symbol table. This load command
- //! is not present in all modules, and this parameter may be `NULL` for
+ //! is not present in all modules, and this parameter may be `nullptr` for
//! modules that do not have this information. When present, \a
//! dysymtab_command is an optimization that allows the symbol table
//! reader to only examine symbol table entries known to be relevant for
@@ -112,7 +112,7 @@ class MachOImageSymbolTableReader {
//! the symbol for the C++ `Func()` function.
//!
//! \return A SymbolInformation* object with information about the symbol if
- //! it was found, or `NULL` if the symbol was not found or if an error
+ //! it was found, or `nullptr` if the symbol was not found or if an error
//! occurred. On error, a warning message will also be logged. The caller
//! does not take ownership; the lifetime of the returned object is scoped
//! to the lifetime of this MachOImageSymbolTableReader object.
« no previous file with comments | « util/mac/mach_o_image_segment_reader.cc ('k') | util/mac/mach_o_image_symbol_table_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698