This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
problems with compiler differences between version 3.3.5 and 4.0.2
- From: Christian Weckmueller <cris dot tian at web dot de>
- To: gcc-help at gcc dot gnu dot org
- Date: Thu, 2 Feb 2006 15:56:31 +0100
- Subject: problems with compiler differences between version 3.3.5 and 4.0.2
Hello dear gcc-helper,
I have a program without problems compiling with 3.3.5 but don't work with
4.0.2.
there is on class A and another on B
so B has a datamember an object of A, like this
class A{
...
};
class B{
...
A a; <<<<<<<
};
The compiler answers that:
file linenumber: A does not name a type