is_instantiation_of<Array, T> won't compile because Array has an int as a template parameter.
corbett5 opened this issue · 1 comments
corbett5 commented
Solution: Change the int
in the the Array
template parameter list to an std::integral_constant
like object. Or just leave it. I don't believe there's a way to fix is_instantiation_of
.
corbett5 commented
Closing this, there's no fix without changing to std::integral_constant which I don't like.