Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a class template, which is, simplified, a little like that :

template<typename T>
class A
{
protected:
    T _data;
public:
    A* operator%(const A &a2) const
    {
        A * ptr;

        ptr = new A(this->_data % a2._data);
        return ptr;
    }
};

And another class which inherits from this class :

class B : public A<double>
{
    // ...
};

But when I do that, the compiler says :

 invalid operands of types ‘double’ and ‘const double’ to binary ‘operator%’

Then, I tried to specialize my operator% for double and float because % seems impossible for those types. I added the following code after class A declaration.

template<>
A* A<double>::operator%(const A &a2) const
{
    A * ptr;
    ptr = new A((uint32_t)this->_data % (uint32_t)a2._data);
    return ptr;
}

And I get this error, I don't actually understand why...

In function `A<double>::operator%(A const&) const':
./include/A.hpp:102: multiple definition of `A<float>::operator%(A const&) const'
src/Processor.o:./include/A.hpp:102: first defined here
share|improve this question

2 Answers

up vote 7 down vote accepted

If you implemented the specialization, outside the class, it's no longer inline so it will be defined multiple times. Mark it inline:

template<>
inline A* A<double>::operator%(const A &a2) const
{
    A * ptr;
    ptr = new A(this->_data % a2._data);
    return ptr;
}

or move it inside the class definition.

share|improve this answer
Thank you, it works like a charm ! – Julien Fouilhé Feb 14 at 10:30

That is because unlike "real" templates, full function template specializations are like normal functions in terms of linking and ODR. And since you specialized it outside any class, it is not implicitly declared inline like a normal method defined inside a class definition.

Therefore you have either to declare the function inline, or only declare it in the header and define it in a source file like any normal function.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.