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

Unified Diff: src/IceCfg.h

Issue 1343843003: Refactor all instances of `typedef y x` to the C++11 `using x = y` syntax. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: Created 5 years, 3 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 | « src/IceAssemblerX86Base.h ('k') | src/IceCfg.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceCfg.h
diff --git a/src/IceCfg.h b/src/IceCfg.h
index 3c8972df6ad80f58b1b22035a38636aff4a2fe6f..78fd47aa28c5f0cb75d7128468d54b90d6fb0af2 100644
--- a/src/IceCfg.h
+++ b/src/IceCfg.h
@@ -96,7 +96,7 @@ public:
void swapNodes(NodeList &NewNodes);
/// @}
- typedef int32_t IdentifierIndexType;
+ using IdentifierIndexType = int32_t;
/// Adds a name to the list and returns its index, suitable for the
/// argument to getIdentifierName(). No checking for duplicates is
/// done. This is generally used for node names and variable names
« no previous file with comments | « src/IceAssemblerX86Base.h ('k') | src/IceCfg.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698