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

Unified Diff: src/IceInst.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/IceGlobalInits.h ('k') | src/IceInstARM32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/IceInst.h
diff --git a/src/IceInst.h b/src/IceInst.h
index 56c5d3a7ac177a14acb1d875c3360e11bebf89e0..80b2bd2622978621b7857b7942f744b321ac7abb 100644
--- a/src/IceInst.h
+++ b/src/IceInst.h
@@ -215,7 +215,7 @@ protected:
/// mapped to one bit position of the LiveRangesEnded bit vector.
/// Only the first CHAR_BIT * sizeof(LREndedBits) variables are
/// tracked this way.
- typedef uint32_t LREndedBits; // only first 32 src operands tracked, sorry
+ using LREndedBits = uint32_t; // only first 32 src operands tracked, sorry
LREndedBits LiveRangesEnded;
};
« no previous file with comments | « src/IceGlobalInits.h ('k') | src/IceInstARM32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698