From 7f215c5ffd90f677a50ecec60c9c2076adc3e954 Mon Sep 17 00:00:00 2001 From: Antonio SJ Musumeci Date: Thu, 2 Oct 2025 20:17:30 -0500 Subject: [PATCH] to_string.cpp --- src/to_string.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/to_string.cpp b/src/to_string.cpp index 94b3043e..43bbd84c 100644 --- a/src/to_string.cpp +++ b/src/to_string.cpp @@ -36,6 +36,12 @@ str::to(const int int_) return fmt::format("{}",int_); } +std::string +str::to(const uint32_t i_) +{ + return fmt::format("{}",i_); +} + std::string str::to(const uint64_t uint64_) {