I need to do this magic:
I have a template:
template <class T>
void Foo(const T& value)
But I need to specialize it for simple types, for example, bool
, int
, etc so it will be passed by const value, not by const reference:
template <>
void Foo<bool>(const bool value)
template <>
void Foo<int>(const int value)
// and so on, including std::nullptr_t
template <>
void Foo<std::nullptr_t>(std::nullptr_t)
{
// some special behavior
}
But it cannot be compiled.
How to do it correctly?
It's because
is not specialization of
but it is its overload (with functions it is different from class templates, because functions can overload).
What you can do is for example:
(or just use simple non-templated overloads, as they take precedence over template instantiation)