Skip to content

Instantly share code, notes, and snippets.

@KPB3rd
Created August 24, 2022 21:25
Show Gist options
  • Select an option

  • Save KPB3rd/39f6cb1c267c9e47a1dae12d6490c669 to your computer and use it in GitHub Desktop.

Select an option

Save KPB3rd/39f6cb1c267c9e47a1dae12d6490c669 to your computer and use it in GitHub Desktop.
Using constexpr in templated func
template <typename T>
func() {
if constexpr(std::is_same<T, TheTypeIWant>::value) {
}
else {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment