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. |