Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index 28bea2e3e4435b39a4b50a140513560b80b3fd85..d7243c688f2e7e756f8ed5a6e8d89305e50f6551 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -76,12 +76,10 @@ |
#endif // _WIN32 |
-// TODO(svenpanne) Remove this when the Chrome's v8 bindings have been adapted. |
-#define V8_DISABLE_DEPRECATIONS 1 |
Michael Starzinger
2012/11/21 09:47:29
Drop the second empty newline.
|
-#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 |