Created
June 15, 2020 10:56
-
-
Save def-/6aa3c33b3a8be409166618aa32c1e0cf 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<class T> | |
void SendPackMsg() | |
{ | |
if constexpr(is_sixup<T>::value) { | |
std::cout << "a" << std::endl; | |
} else { | |
std::cout << "b" << std::endl; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment