Skip to content

Commit d044898

Browse files
addaleaxevanlucas
authored andcommitted
src: Add missing using v8::MaybeLocal
As of 2cbbaaf (#5756) there’s a missing `using v8::MaybeLocal;` in `src/node.cc` that breaks the build. This patch adds the necessary line. PR-URL: #5974 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com>
1 parent e644eb3 commit d044898

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/node.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ using v8::Integer;
115115
using v8::Isolate;
116116
using v8::Local;
117117
using v8::Locker;
118+
using v8::MaybeLocal;
118119
using v8::Message;
119120
using v8::Number;
120121
using v8::Object;

0 commit comments

Comments
 (0)