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

Unified Diff: snapshot/mac/mach_o_image_symbol_table_reader.h

Issue 700143004: C++11: Use type aliases instead of typedefs (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: Created 6 years, 1 month 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 | « snapshot/mac/mach_o_image_reader_test.cc ('k') | snapshot/mac/process_reader_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: snapshot/mac/mach_o_image_symbol_table_reader.h
diff --git a/snapshot/mac/mach_o_image_symbol_table_reader.h b/snapshot/mac/mach_o_image_symbol_table_reader.h
index 5970be5c0cf619d8d9855bb551b79c343a8af770..9302e7fc00006d6fa22588b3c3e9d096e4ab6000 100644
--- a/snapshot/mac/mach_o_image_symbol_table_reader.h
+++ b/snapshot/mac/mach_o_image_symbol_table_reader.h
@@ -66,7 +66,7 @@ class MachOImageSymbolTableReader {
//
// This is public so that the type is available to
// MachOImageSymbolTableReaderInitializer.
- typedef std::map<std::string, SymbolInformation> SymbolInformationMap;
+ using SymbolInformationMap = std::map<std::string, SymbolInformation>;
MachOImageSymbolTableReader();
~MachOImageSymbolTableReader();
« no previous file with comments | « snapshot/mac/mach_o_image_reader_test.cc ('k') | snapshot/mac/process_reader_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698