From f1d6ac789e34af3e9cefa572355b1613b4e23823 Mon Sep 17 00:00:00 2001 From: King_DuckZ Date: Fri, 14 Aug 2020 00:04:05 +0100 Subject: [PATCH] Indentation --- include/duckhandy/int_conv.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } };