slight change, quotes around strings
parent
ecd3d1a701
commit
be721a4e52
|
@ -1,6 +1,6 @@
|
||||||
cmake_minimum_required(VERSION 3.20)
|
cmake_minimum_required(VERSION 3.20)
|
||||||
include(cmake/color.cmake)
|
include(cmake/color.cmake)
|
||||||
set(BLT_VERSION 4.0.37)
|
set(BLT_VERSION 4.0.38)
|
||||||
|
|
||||||
set(BLT_TARGET BLT)
|
set(BLT_TARGET BLT)
|
||||||
|
|
||||||
|
|
|
@ -551,7 +551,7 @@ namespace blt::argparse
|
||||||
{
|
{
|
||||||
if (!std::isblank(str.str().back()))
|
if (!std::isblank(str.str().back()))
|
||||||
str += " ";
|
str += " ";
|
||||||
str += "(Default: ";
|
str += "(Default: '";
|
||||||
std::visit(detail::arg_meta_type_helper_t::make_visitor(
|
std::visit(detail::arg_meta_type_helper_t::make_visitor(
|
||||||
[&](auto& value)
|
[&](auto& value)
|
||||||
{
|
{
|
||||||
|
@ -571,7 +571,7 @@ namespace blt::argparse
|
||||||
str += ']';
|
str += ']';
|
||||||
}
|
}
|
||||||
}), *builder->m_default_value);
|
}), *builder->m_default_value);
|
||||||
str += ")";
|
str += "')";
|
||||||
}
|
}
|
||||||
if (builder->m_choices)
|
if (builder->m_choices)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue