From 2bf365ad1a7ef431bb75f41bad370237df89cb66 Mon Sep 17 00:00:00 2001 From: Prokop Randacek Date: Thu, 1 Jun 2023 19:08:54 +0200 Subject: [PATCH] remove unused variable --- include/clipp.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/clipp.h b/include/clipp.h index d7b101e..757e742 100644 --- a/include/clipp.h +++ b/include/clipp.h @@ -1406,9 +1406,7 @@ class action_provider //--------------------------------------------------------------- /** @brief executes all argument actions */ void execute_actions(const arg_string& arg) const { - int i = 0; for(const auto& a : argActions_) { - ++i; a(arg.c_str()); } }