Problems since migrating to xcode 2
Problems since migrating to xcode 2
- Subject: Problems since migrating to xcode 2
- From: Simon Harms <email@hidden>
- Date: Thu, 26 May 2005 13:49:38 +1000
Hey guys,
We are having a weird unexplained problem when upgrading from GCC 3.3 to GCC 4.0.
We have a template class LRef<T> like this...
template <class T> class LRef { ...
protected: T* p; };
and a derived class like this...
template <class T>class LPtr:public LRef<T> { ~LPtr(); ... };
when we attempt to access a base template class' member from the derived class like this... template <class T> inline LPtr<T>::~LPtr() { delete p; }
We get the error...
/Volumes/Shares/SourceCode/llib/include/llib/gen/ptr.h:261: error: 'p' was not declared in this scope
This only happens with the new GCC 4 and Xcode 2. It never happened before. Any ideas?
Simon Harms |
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden