From 16168ca6c1082584f2696414952341a71479ecd9 Mon Sep 17 00:00:00 2001 From: Keyhan Vakil Date: Mon, 13 Mar 2023 02:54:21 +0000 Subject: [PATCH] src: fix clang 14 linker error Compiling with clang 14 on Ubuntu was failing with a linker error that `node::MaybeStackBuffer::AllocateSufficientStorage` was undefined in `src/inspector/node_string.cc`. I bisected it to the referenced PR. Include `util-inl.h` which defines `node::MaybeStackBuffer::AllocateSufficientStorage`. Refs: https://github.com/nodejs/node/pull/46817 --- src/inspector/node_string.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/inspector/node_string.cc b/src/inspector/node_string.cc index 441d9a352eaca8..171ba04bef113b 100644 --- a/src/inspector/node_string.cc +++ b/src/inspector/node_string.cc @@ -2,6 +2,7 @@ #include "node/inspector/protocol/Protocol.h" #include "node_util.h" #include "simdutf.h" +#include "util-inl.h" namespace node { namespace inspector {