Consider the following program:
#include <iostream>
template<int s>
class Pack
{
public:
Pack(){}
char data[s];
template<typename X> operator X&(){ return *reinterpret_cast<X*>(data); }
template<typename X> operator X const&()const{ return *reinterpret_cast<const X*>(data); }
};
int main()
{
const Pack<8> p;
const double d(p);
std::cout<<d<<std::endl;
}
It compiles fine under Windows. Under linux I get:
test.cc: In function ‘int main()’:
test.cc:17: error: passing ‘const Pack<8>’ as ‘this’ argument of ‘Pack<s>::operator X&() [with X = double, int s = 8]’ discards qualifiers
Why? Why is it not taking the const type conversion operator? How can I fix this and still have the convenient templated type conversion operator (in const and not const version). Thanks!
operator double()and doesn't find a suitable one (because the provided ones also have a reference). - If it's a good idea in the first place, why not use a named member function? – UncleBens Nov 23 '10 at 18:05