Browse Source

to_string.cpp

passthrough-depth
Antonio SJ Musumeci 4 months ago
parent
commit
7f215c5ffd
  1. 6
      src/to_string.cpp

6
src/to_string.cpp

@ -36,6 +36,12 @@ str::to(const int int_)
return fmt::format("{}",int_); return fmt::format("{}",int_);
} }
std::string
str::to(const uint32_t i_)
{
return fmt::format("{}",i_);
}
std::string std::string
str::to(const uint64_t uint64_) str::to(const uint64_t uint64_)
{ {

Loading…
Cancel
Save