Commit 1f8239bf authored by Alexander Lapshin's avatar Alexander Lapshin

.

parent 5f6d7696
......@@ -77,6 +77,21 @@ static std::string ToStr(const T arg)
return "";
}
static std::string ToStr(const bool arg)
{
std::array<char, 32> buf;
const auto res = std::to_chars(buf.data(), buf.data() + buf.size(), static_cast<int>(arg));
if (res.ec == std::errc()) {
return std::string(buf.data(), res.ptr - buf.data());
}
hangle_to_chars_error(res, arg);
return "";
}
// static std::string ToStr(const size_t arg)
// {
// std::array<char, 32> buf;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment