From e1f39034c8dfa8d78b3ea618e6cdba338f627c7a Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Fri, 7 Feb 2025 15:44:43 +0000 Subject: [PATCH] fix: add missing `stdexcept` include to test MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ‘std::runtime_error’ is defined in header ‘’. --- test/except_all.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/test/except_all.cc b/test/except_all.cc index ca91efdf3..e2c230b21 100644 --- a/test/except_all.cc +++ b/test/except_all.cc @@ -1,3 +1,4 @@ +#include #include "napi.h" using namespace Napi;