All Questions
1 question
2
votes
1
answer
545
views
limiting specializations using SFINAE, Constraints or Concepts?
The following program runs fine:
struct M; // forward declare so compiler will recognize this type
struct N;
template< typename J > struct B { template< typename U > void Func1(); };
...