slight change, quotes around strings

v2
Brett 2025-02-28 18:08:52 -05:00
parent ecd3d1a701
commit be721a4e52
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.20)
include(cmake/color.cmake)
set(BLT_VERSION 4.0.37)
set(BLT_VERSION 4.0.38)
set(BLT_TARGET BLT)

View File

@ -551,7 +551,7 @@ namespace blt::argparse
{
if (!std::isblank(str.str().back()))
str += " ";
str += "(Default: ";
str += "(Default: '";
std::visit(detail::arg_meta_type_helper_t::make_visitor(
[&](auto& value)
{
@ -571,7 +571,7 @@ namespace blt::argparse
str += ']';
}
}), *builder->m_default_value);
str += ")";
str += "')";
}
if (builder->m_choices)
{