| Index: include/v8.h
|
| diff --git a/include/v8.h b/include/v8.h
|
| index 28bea2e3e4435b39a4b50a140513560b80b3fd85..01a4cc9dea7f9e29b565597e3b984215a96ed91f 100644
|
| --- a/include/v8.h
|
| +++ b/include/v8.h
|
| @@ -76,12 +76,9 @@
|
|
|
| #endif // _WIN32
|
|
|
| -// TODO(svenpanne) Remove this when the Chrome's v8 bindings have been adapted.
|
| -#define V8_DISABLE_DEPRECATIONS 1
|
| -
|
| -#if defined(__GNUC__) && !defined(V8_DISABLE_DEPRECATIONS)
|
| +#if defined(__GNUC__) && !V8_DISABLE_DEPRECATIONS
|
| #define V8_DEPRECATED(func) func __attribute__ ((deprecated))
|
| -#elif defined(_MSC_VER) && !defined(V8_DISABLE_DEPRECATIONS)
|
| +#elif defined(_MSC_VER) && !V8_DISABLE_DEPRECATIONS
|
| #define V8_DEPRECATED(func) __declspec(deprecated) func
|
| #else
|
| #define V8_DEPRECATED(func) func
|
|
|