Chromium Code Reviews| Index: include/v8.h |
| diff --git a/include/v8.h b/include/v8.h |
| index 1f8cbfd83b0e0986336b9b0bcef6985d0659a4ef..d3471c55914b3c74aa0cf7cf53618f60b7292359 100644 |
| --- a/include/v8.h |
| +++ b/include/v8.h |
| @@ -5819,7 +5819,6 @@ void ReturnValue<T>::Set(int32_t i) { |
| template<typename T> |
| void ReturnValue<T>::Set(uint32_t i) { |
| TYPE_CHECK(T, Integer); |
| - typedef internal::Internals I; |
| // Can't simply use INT32_MAX here for whatever reason. |
| bool fits_into_int32_t = (i & (1U << 31)) == 0; |
| if (V8_LIKELY(fits_into_int32_t)) { |