Skip to content

Instantly share code, notes, and snippets.

@stryku
Created July 12, 2017 19:45
Show Gist options
  • Select an option

  • Save stryku/9ca71da07a38fe9abb7b4302a17d457d to your computer and use it in GitHub Desktop.

Select an option

Save stryku/9ca71da07a38fe9abb7b4302a17d457d to your computer and use it in GitHub Desktop.
template <typename T>
std::enable_if_t<std::is_convertible_v<T, std::string>, std::string>
toString(const T& value)
{
return { value };
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment