We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
c++ prefers paramter packs as last arguement
template<class... T_MyPack, TICK_REQUIRES(MyPackConstriants<T_MyPack...>())> class SomeClass {
}
How do i declare class that takes pack, and uses TICK_REQUIRES in class header to help documnnet constraints used closer to class header.
Currently had to resolve using static_assert(MyPackConstriants<>() ) inside the class.
So again the problem generally is doing TICK with variable argument templates
cheers
The text was updated successfully, but these errors were encountered:
No branches or pull requests
c++ prefers paramter packs as last arguement
template<class... T_MyPack, TICK_REQUIRES(MyPackConstriants<T_MyPack...>())>
class SomeClass
{
}
How do i declare class that takes pack, and uses TICK_REQUIRES in class header to help documnnet constraints used closer to class header.
Currently had to resolve using static_assert(MyPackConstriants<>() ) inside the class.
So again the problem generally is doing TICK with variable argument templates
cheers
The text was updated successfully, but these errors were encountered: