From d987367f90912d5e52475458770eb80f94adbcee Mon Sep 17 00:00:00 2001 From: xlauko Date: Tue, 8 Oct 2024 13:38:35 +0200 Subject: [PATCH] repl: Fix unused variable. --- tools/vast-repl/vast-repl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/vast-repl/vast-repl.cpp b/tools/vast-repl/vast-repl.cpp index e4ff027105..69066b4eb3 100644 --- a/tools/vast-repl/vast-repl.cpp +++ b/tools/vast-repl/vast-repl.cpp @@ -59,7 +59,7 @@ namespace vast::repl while (!cli.exit()) { std::string cmd; - if (auto quit = linenoise::Readline("> ", cmd)) { + if (linenoise::Readline("> ", cmd)) { break; }