Skip to content

Instantly share code, notes, and snippets.

@stryku
Last active March 26, 2017 18:41
Show Gist options
  • Save stryku/6b1453f99c7e31757aef6e754c229570 to your computer and use it in GitHub Desktop.
Save stryku/6b1453f99c7e31757aef6e754c229570 to your computer and use it in GitHub Desktop.
template <int value, typename sign_str, char ...chars>
struct string_from_int_impl<value, sign_str, false, string<chars...>>
{
using type = typename string_from_int_impl<
value/10,
sign_str,
value/10 == 0,
string<value % 10 + '0', chars...>>::type;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment