I am trying to implement a Expression class with 2 specialisation for arithmetic types. This is the default class:
template<typename Left, typename Op, typename Right, typename std::enable_if<!std::is_arithmetic<Left>::value, Left>::type* = nullptr>
class Expression { /* ... */ }
And those are the two specialisations:
template<typename Left, typename Op, typename Right, typename std::enable_if<std::is_arithmetic<Left>::value, Left>::type* = nullptr>
class Expression { /* ... */ };
template<typename Left, typename Op, typename Right, typename std::enable_if<std::is_arithmetic<Right>::value, Right>::type* = nullptr>
class Expression { /* ... */ };
If I now compile my code I get this error:
Error C3855 'Expression': template parameter '__formal' is incompatible with the declaration Vector
How can I solve my problem with templates and specialisation or dummy types as I used them.
You have multiple primary class templates and these can't be replaced. You need to have one primary template followed by multiple specializations. A simple approach is to do it differently:
If you have multiple cases which can be handled together you can make these primary template and only specialize the remaining special cases.