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

Unified Diff: src/machine-type.h

Issue 2669113003: Removes uint8_t from MachineRepresentation and MachineSemantic enums. (Closed)
Patch Set: Created 3 years, 11 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/machine-type.h
diff --git a/src/machine-type.h b/src/machine-type.h
index a59aced36ea3323491b1b0a6f39cb3e3cc3cecd3..fd1d41dcc3a2dd3f8da800c02fd03bcf47c64d64 100644
--- a/src/machine-type.h
+++ b/src/machine-type.h
@@ -15,7 +15,7 @@
namespace v8 {
namespace internal {
-enum class MachineRepresentation : uint8_t {
+enum class MachineRepresentation {
kNone,
kBit,
kWord8,
@@ -39,7 +39,7 @@ static_assert(static_cast<int>(MachineRepresentation::kLastRepresentation) <
const char* MachineReprToString(MachineRepresentation);
-enum class MachineSemantic : uint8_t {
+enum class MachineSemantic {
kNone,
kBool,
kInt32,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698