c++ - "access declaration of base ...": error message needs explanation
- Scott Michel (5/5) Jul 22 2004 Does anyone have a good explanation of what this error message means or
- Walter (4/9) Jul 23 2004 Cannot specify a storage class or a type when
- Scott Michel (2/15) Jul 23 2004 Sorry, don't mean to be completely dense, but do you have an example?
- Walter (8/23) Jul 24 2004 From ARM 11.3:
Does anyone have a good explanation of what this error message means or what its intent is? ..\..\stlport\stl/_tree.h(278) : Error: access declaration of base member 'EH_allocator<TestClass >::_Non_const_traits' has storage class or type
Jul 22 2004
"Scott Michel" <scottm aero.org> wrote in message news:cdpo3k$19qh$1 digitaldaemon.com...Does anyone have a good explanation of what this error message means or what its intent is? ..\..\stlport\stl/_tree.h(278) : Error: access declaration of base member 'EH_allocator<TestClass >::_Non_const_traits' has storage class or typeCannot specify a storage class or a type when adjusting the access to a member of a base class.
Jul 23 2004
Walter wrote:"Scott Michel" <scottm aero.org> wrote in message news:cdpo3k$19qh$1 digitaldaemon.com...Sorry, don't mean to be completely dense, but do you have an example?Does anyone have a good explanation of what this error message means or what its intent is? ..\..\stlport\stl/_tree.h(278) : Error: access declaration of base member 'EH_allocator<TestClass >::_Non_const_traits' has storage class or typeCannot specify a storage class or a type when adjusting the access to a member of a base class.
Jul 23 2004
"Scott Michel" <scottm aero.org> wrote in message news:cds830$2tvp$1 digitaldaemon.com...Walter wrote:From ARM 11.3: class B { }; class D : private B { int d; public: int B::c; };"Scott Michel" <scottm aero.org> wrote in message news:cdpo3k$19qh$1 digitaldaemon.com...Sorry, don't mean to be completely dense, but do you have an example?Does anyone have a good explanation of what this error message means or what its intent is? ..\..\stlport\stl/_tree.h(278) : Error: access declaration of base member 'EH_allocator<TestClass >::_Non_const_traits' has storage class or typeCannot specify a storage class or a type when adjusting the access to a member of a base class.
Jul 24 2004