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

Unified Diff: client/simple_string_dictionary.cc

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 | « client/simple_string_dictionary.h ('k') | client/simple_string_dictionary_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/simple_string_dictionary.cc
diff --git a/client/simple_string_dictionary.cc b/client/simple_string_dictionary.cc
index 171a85267a2a5a19c347553aa3267a2c8bb86d90..985b8938459ede43c0a3538b51112ac39c34cf44 100644
--- a/client/simple_string_dictionary.cc
+++ b/client/simple_string_dictionary.cc
@@ -23,7 +23,7 @@
namespace crashpad {
namespace {
-typedef TSimpleStringDictionary<1, 1, 1> SimpleStringDictionaryForAssertion;
+using SimpleStringDictionaryForAssertion = TSimpleStringDictionary<1, 1, 1>;
#if CXX_LIBRARY_VERSION >= 2011
// In C++11, check that TSimpleStringDictionary has standard layout, which is
« no previous file with comments | « client/simple_string_dictionary.h ('k') | client/simple_string_dictionary_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698