Last active
February 23, 2017 21:39
-
-
Save stryku/af5b1f1e76c5f87a697de0eab2bbd35b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template <typename string1, typename string2> | |
struct sum_chars_count | |
{ | |
static constexpr auto sum = to_string<string1>::size + to_string<string2>::size; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment