000
22.07.2008, 19:01 Uhr
~anton12
Gast
|
folgende zuweisung benutze ich in meinem programm um eine matrix mit listen als elementen zu erzeugen:
C++: |
rawdata.assign(300,vector<list<int> >(20,0));
|
bis jetzt ging das auch wunderbar, wenn ich nicht total bekloppt bin. seitdem ich aber opensuse 11 mit gcc-g++ 4.3-39.1 installiert habe kommt beim compilieren die fehlermeldung:
Code: |
/usr/include/c++/4.3/bits/stl_vector.h: In member function ‘void std::vector<_Tp, _Alloc>::_M_initialize_dispatch(_Integer, _Integer, std::__true_type) [with _Integer = int, _Tp =std::list<int, std::allocator<int> >, _Alloc = std::allocator<std::list<int, std::allocator<int> > >]’: /usr/include/c++/4.3/bits/stl_vector.h:290: instantiated from ‘std::vector<_Tp, _Alloc>::vector(_InputIterator, _InputIterator, const _Alloc&) [with _InputIterator = int, _Tp = std::list<int, std::allocator<int> >, _Alloc = std::allocator<std::list<int, std::allocator<int> > >]’ sna_afra.cpp:62: instantiated from here /usr/include/c++/4.3/bits/stl_vector.h:932: error: no matching function for call to ‘std::vector<std::list<int, std::allocator<int> >, std::allocator<std::list<int, std::allocator<int> > > >::_M_fill_initialize(size_t, int&)’ /usr/include/c++/4.3/bits/stl_vector.h:974: note: candidates are: void std::vector<_Tp, _Alloc>::_M_fill_initialize(size_t, const _Tp&) [with _Tp = std::list<int, std::allocator<int> >, _Alloc = std::allocator<std::list<int, std::allocator<int> > >]
|
was mich leider völlig überfordert. kann mir jemand helfen? unter windows hab ich die fehlermeldung auch nicht.
viele grüße amton |