Chromium Code Reviews| Index: src/globals.h |
| diff --git a/src/globals.h b/src/globals.h |
| index 871164eaefe6059f9ed700beb3dbbdca9d780078..982b8a06ca9664e7b0f3f356f71ca8821ec965da 100644 |
| --- a/src/globals.h |
| +++ b/src/globals.h |
| @@ -358,7 +358,7 @@ enum MinimumCapacity { |
| USE_CUSTOM_MINIMUM_CAPACITY |
| }; |
| -enum GarbageCollector { SCAVENGER, MARK_COMPACTOR }; |
| +enum GarbageCollector { SCAVENGER = 0, MARK_COMPACTOR = 1}; |
|
Hannes Payer (out of office)
2014/07/22 09:10:17
Why do you have to initialize it with =0, and =1?
ernstm
2014/07/22 14:09:28
Not needed any more, with the introduction of Even
|
| enum Executability { NOT_EXECUTABLE, EXECUTABLE }; |