diff options
author | 2017-11-08 03:26:30 +0000 | |
---|---|---|
committer | 2017-11-08 03:26:30 +0000 | |
commit | cefd676fb79d225fcd7e8e8c0ef141d70a2f45b8 (patch) | |
tree | be625fa0bc1255cbea5c5066dd878fb0b2a1c454 /runtime/class_status.h | |
parent | dbc26ad5e8ded15688d20a39344c677077311279 (diff) | |
parent | 86083f7cd118f3d6c757191e83b4e4abaabdc5d7 (diff) |
Merge "runtime: Bitstring implementation for subtype checking (4/4)."
Diffstat (limited to 'runtime/class_status.h')
-rw-r--r-- | runtime/class_status.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/class_status.h b/runtime/class_status.h index 0877e68818..7f2ef6a09d 100644 --- a/runtime/class_status.h +++ b/runtime/class_status.h @@ -18,6 +18,7 @@ #define ART_RUNTIME_CLASS_STATUS_H_ #include <iosfwd> +#include <stdint.h> namespace art { @@ -70,7 +71,7 @@ namespace art { // again at runtime. // // TODO: Explain the other states -enum ClassStatus { +enum ClassStatus : int8_t { kStatusRetired = -3, // Retired, should not be used. Use the newly cloned one instead. kStatusErrorResolved = -2, kStatusErrorUnresolved = -1, |