From 225f3b9f346e4c34972ac951ead0031263f3a56c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Thu, 23 Jun 2016 10:19:34 +0200 Subject: [PATCH] deps: update v8_inspector Pick up latest commit of v8_inspector and inspector_protocol. This brings back compatibility with V8 5.1. PR-URL: https://github.com/nodejs/node/pull/7385 Reviewed-By: Colin Ihrig Reviewed-By: Ali Ijaz Sheikh --- deps/v8_inspector/platform/v8_inspector/V8Compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/v8_inspector/platform/v8_inspector/V8Compat.h b/deps/v8_inspector/platform/v8_inspector/V8Compat.h index 17d104f7736ea7..30492b3af7a8e9 100644 --- a/deps/v8_inspector/platform/v8_inspector/V8Compat.h +++ b/deps/v8_inspector/platform/v8_inspector/V8Compat.h @@ -7,7 +7,7 @@ #include -#if V8_MAJOR_VERSION < 5 || (V8_MAJOR_VERSION == 5 && V8_MINOR_VERSION < 2) +#if V8_MAJOR_VERSION < 5 || (V8_MAJOR_VERSION == 5 && V8_MINOR_VERSION < 1) namespace v8 { // In standalone V8 inspector this is expected to be noop anyways...