For some strange reason g++ (versions 4.5.0 and 4.5.2) cannot compile this code:
bool somefunc() {
return false;
}
class C {
public:
static const int a = 0;
static const int b = 1;
};
class myclass {
public:
int check() {
return somefunc() ? C::a : C::b;
// if(somefunc()) return C::a; else return C::b;
}
};
int main() {
myclass obj;
obj.check();
return 0;
}
It gives me this error:
/tmp/ccyvvTUy.o:/home/mati/test.cpp:14: undefined reference to `C::a'
/tmp/ccyvvTUy.o:/home/mati/test.cpp:14: undefined reference to `C::b'
collect2: ld returned 1 exit status
What's strange if I change problematic line to the commented line it compiles fine. Is it something wrong with my code and something I don't understand about C++ or is it just a bug in G++ ?
+.return somefunc() ? +C::a : +C::bcompiles fine (gcc 4.7). – Vitus Jul 11 '11 at 22:34+C::aimmediately converts it to rvalue and in this case it is considered not used so you don't have to provide definition outside the class (see: open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#712). – matix2267 Jul 12 '11 at 7:55