Utilities: Mark unused variable with maybe_unused

This marks s_keep_running_repl as maybe_unused as it is set but unused
when running on Windows where we don't provide REPL functionality.
This commit is contained in:
R-Goc
2026-04-20 15:40:35 +02:00
committed by Andrew Kaster
parent d7a8dd668d
commit 1ea9c00f7c
Notes: github-actions[bot] 2026-04-20 21:47:01 +00:00

View File

@@ -100,7 +100,7 @@ static RefPtr<Line::Editor> s_editor;
#endif
static String s_history_path = String {};
[[maybe_unused]] static int s_repl_line_level = 0;
static bool s_keep_running_repl = true;
[[maybe_unused]] static bool s_keep_running_repl = true;
static int s_exit_code = 0;
static ErrorOr<void> print_inline(JS::Value value, Stream& stream)