| Index: src/v8globals.h
|
| ===================================================================
|
| --- src/v8globals.h (revision 7161)
|
| +++ src/v8globals.h (working copy)
|
| @@ -472,7 +472,11 @@
|
| // The Strict Mode (ECMA-262 5th edition, 4.2.2).
|
| enum StrictModeFlag {
|
| kNonStrictMode,
|
| - kStrictMode
|
| + kStrictMode,
|
| + // This value is never used, but is needed to prevent GCC 4.5 from failing
|
| + // to compile when we assert that a flag is either kNonStrictMode or
|
| + // kStrictMode.
|
| + kInvalidStrictFlag
|
| };
|
|
|
| } } // namespace v8::internal
|
|
|