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

Unified Diff: src/IceIntrinsics.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/IceInstX86Base.h ('k') | src/IceOperand.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceIntrinsics.h
diff --git a/src/IceIntrinsics.h b/src/IceIntrinsics.h
index 674c9ab2822fe0961eed734720cc48089ad97834..75e67aa70cd52cd39dc8b355eb353b1fecef041d 100644
--- a/src/IceIntrinsics.h
+++ b/src/IceIntrinsics.h
@@ -165,7 +165,7 @@ public:
private:
// TODO(jvoung): May want to switch to something like LLVM's StringMap.
- typedef std::map<IceString, FullIntrinsicInfo> IntrinsicMap;
+ using IntrinsicMap = std::map<IceString, FullIntrinsicInfo>;
IntrinsicMap Map;
};
« no previous file with comments | « src/IceInstX86Base.h ('k') | src/IceOperand.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698