From c118bc0ff43ff6ecef633dd00645c4b8d54b5719 Mon Sep 17 00:00:00 2001 From: Nitin Kumar <59679977+lazysegtree@users.noreply.github.com> Date: Sat, 28 Feb 2026 14:26:05 +0530 Subject: [PATCH] fix: indentation fixes --- test/options.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/options.cpp b/test/options.cpp index e2aec47..7c595e2 100644 --- a/test/options.cpp +++ b/test/options.cpp @@ -645,7 +645,7 @@ TEST_CASE("Implicit value with disabled_args", "[no_value]") options.add_options() ("b,bool", "bool with disabled_args", cxxopts::value()->implicit_value("true", true)) ("s,string", "string with disabled_args", cxxopts::value()->implicit_value("value", true)) - ("x,string2", "string with first disabled and then enabled args", + ("x,string2", "string with first disabled and then enabled args", cxxopts::value()->implicit_value("value", true)->no_implicit_value()); struct testcase{ std::string name;