Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
c++ - using vector typedefs
The test-case uses the bundled SGI STL: #include <vector.h> struct A { struct B { inline bool operator ()(const vector<int> &a, int i) { return a.size() == i; // Error: 'size' is not a member of undefined class 'vector<int, // __default_alloc_template<0,0> >' } }; vector<int>::value_type c; }; BTW, it works if I delete the definition of "c" or move it to the top of the class definition. bye, Christof -- http://cmeerw.cjb.net Jabber: cmeerw jabber.at mailto cmeerw at web.de ICQ: 93773535, Yahoo!: cmeerw ...and what have you contributed to the Net? Oct 24 2001
|