Indentation

This commit is contained in:
King_DuckZ 2020-08-14 00:04:05 +01:00
parent 79ca881bc1
commit f1d6ac789e

View file

@ -31,7 +31,7 @@ namespace dhandy {
template <typename F>
struct IntConv<std::enable_if_t<std::is_integral_v<F>, 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);
}
};