From 60b7c741b387e0d82ab5894cf4c754119066bb94 Mon Sep 17 00:00:00 2001 From: Shelley Vohr Date: Fri, 28 Mar 2025 15:14:58 +0100 Subject: [PATCH] src: fix -Wunreachable-code-return in node_sea --- src/node_sea.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/node_sea.cc b/src/node_sea.cc index fb9f933a19fa70..d70401f4eccdc1 100644 --- a/src/node_sea.cc +++ b/src/node_sea.cc @@ -637,8 +637,9 @@ bool MaybeLoadSingleExecutableApplication(Environment* env) { LoadEnvironment(env, LoadSingleExecutableApplication); return true; -#endif +#else return false; +#endif } void Initialize(Local target,