diff --git a/include/duckhandy/int_conv.hpp b/include/duckhandy/int_conv.hpp index 2f63722..cbd557d 100644 --- a/include/duckhandy/int_conv.hpp +++ b/include/duckhandy/int_conv.hpp @@ -31,7 +31,7 @@ namespace dhandy { template struct IntConv, std::string>, F> { static std::string conv (const F& in) { - auto retval = dhandy::int_to_ary(in); + auto retval = dhandy::int_to_ary(in); return std::string(retval.begin(), retval.end() - 1); } };