I have a strange problem with my code when porting from a computer with glibc-2.5-25 (suse 10.2) to a computer with glibc-2.3.2-6 (suse 8.2). I use several method calls on temporary objects and they are not working on the older machine.

class A
{
public:
    A(int n) {}
    void method() {}
};

int main()
{
    A(10).method(); //here the compiler gives parse error before . 

    A a(10);
    a.method(); //this works fine 
}

Could this really happen because of the older libc version or it might be a setting in my IDE (compiler setting)?

link|improve this question
glibc is a library - this is a compilation issue. – anon Feb 19 '10 at 14:00
What compiler version are you using? – David Rodríguez - dribeas Feb 19 '10 at 14:06
Yes, you are right, the gcc versions are as follows: gcc-4.1.3-29 on the newer platform gcc-3.3-23 on the older one (with problems) – user265149 Feb 19 '10 at 14:32
feedback

2 Answers

Why would the libc version influence a parse error? g++ version would be more useful.

gcc changed its parser around version 3.4 and solved at the time a lot of parsing issues which weren't easy to fix in the old yacc parser. That could explain what you see.

link|improve this answer
feedback

This seems to be a compiler bug: http://gcc.gnu.org/ml/gcc-bugs/1998-10/msg00178.html (older version, same bug). A workaround with identical semantics would be something like:

#define TEMP(T, x, y) { T _temporary(x); _temporary.y; }

A(10).method(); // is:
TEMP(A, 10, method())

Yuck.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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