gcc 2.95.3 problems with kdevelop cvs
Roberto Raggi
raggi at cli.di.unipi.it
Wed Dec 11 22:07:05 UTC 2002
On Wednesday 11 December 2002 18:53, ian reinhart geiser wrote:
> That patch seemed to fix the build error on 297, but there where a fair lot
> more. What exactly does the patch do and can I apply a similar idea to the
> rest of the file?
it's like you can't assign directly a value of type auto_ptr<T> to a variabile
of type auto_ptr<T>&.. a simple workaround is to replace all occurrence of
node = CreateNode<T>();
with
T::Node tmp = CreateNode<T>()
node = tmp;
ciao robe
More information about the KDevelop-devel
mailing list