From d04489849539f1211bdbb959c4bba3e764d93dd2 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Thu, 31 Mar 2016 14:51:57 +0200 Subject: [PATCH] src: Add missing `using v8::MaybeLocal` MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit As of 2cbbaafca9c81 (#5756) there’s a missing `using v8::MaybeLocal;` in `src/node.cc` that breaks the build. This patch adds the necessary line. PR-URL: https://github.com/nodejs/node/pull/5974 Reviewed-By: Colin Ihrig Reviewed-By: Evan Lucas --- src/node.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/node.cc b/src/node.cc index a3dd6c0bd8e1e9..4cc81185167934 100644 --- a/src/node.cc +++ b/src/node.cc @@ -115,6 +115,7 @@ using v8::Integer; using v8::Isolate; using v8::Local; using v8::Locker; +using v8::MaybeLocal; using v8::Message; using v8::Number; using v8::Object;