I have some compilation problems returning elements of type T to a vector when compiling with g ++ -std = C ++ 0x.
This is a minimal example:
It compiles fine with g ++ -Wall -pedantic, but it gives this error when compiling with g ++ -Wall -pedantic -std = C ++ 0x:
In file included from /usr/include/c++/4.4/vector:69, from min.cpp:1: /usr/include/c++/4.4/bits/vector.tcc: In member function 'void std::vector<_Tp, _Alloc>::_M_insert_aux(__gnu_cxx::__normal_iterator<typename std::_Vector_base<_Tp, _Alloc>::_Tp_alloc_type::pointer, std::vector<_Tp, _Alloc> >, _Args&& ...) [with _Args = const A&, _Tp = A, _Alloc = std::allocator<A>]': /usr/include/c++/4.4/bits/stl_vector.h:741: instantiated from 'void std::vector<_Tp, _Alloc>::push_back(const _Tp&) [with _Tp = A, _Alloc = std::allocator<A>]' min.cpp:20: instantiated from here /usr/include/c++/4.4/bits/vector.tcc:314: error: no match for 'operator=' in '__position.__gnu_cxx::__normal_iterator<_Iterator, _Container>::operator* [with _Iterator = A*, _Container = std::vector<A, std::allocator<A> >]() = ((const A&)((const A*)std::forward [with _Tp = const A&](((const A&)((const A*)__args#0)))))' min.cpp:11: note: candidates are: A& A::operator=(A&) In file included from /usr/include/c++/4.4/vector:61, from min.cpp:1: /usr/include/c++/4.4/bits/stl_algobase.h: In static member function 'static _BI2 std::__copy_move_backward<true, false, std::random_access_iterator_tag>::__copy_move_b(_BI1, _BI1, _BI2) [with _BI1 = A*, _BI2 = A*]': /usr/include/c++/4.4/bits/stl_algobase.h:595: instantiated from '_BI2 std::__copy_move_backward_a(_BI1, _BI1, _BI2) [with bool _IsMove = true, _BI1 = A*, _BI2 = A*]' /usr/include/c++/4.4/bits/stl_algobase.h:605: instantiated from '_BI2 std::__copy_move_backward_a2(_BI1, _BI1, _BI2) [with bool _IsMove = true, _BI1 = A*, _BI2 = A*]' /usr/include/c++/4.4/bits/stl_algobase.h:676: instantiated from '_BI2 std::move_backward(_BI1, _BI1, _BI2) [with _BI1 = A*, _BI2 = A*]' /usr/include/c++/4.4/bits/vector.tcc:308: instantiated from 'void std::vector<_Tp, _Alloc>::_M_insert_aux(__gnu_cxx::__normal_iterator<typename std::_Vector_base<_Tp, _Alloc>::_Tp_alloc_type::pointer, std::vector<_Tp, _Alloc> >, _Args&& ...) [with _Args = const A&, _Tp = A, _Alloc = std::allocator<A>]' /usr/include/c++/4.4/bits/stl_vector.h:741: instantiated from 'void std::vector<_Tp, _Alloc>::push_back(const _Tp&) [with _Tp = A, _Alloc = std::allocator<A>]' min.cpp:20: instantiated from here /usr/include/c++/4.4/bits/stl_algobase.h:561: error: no match for 'operator=' in '* -- __result = std::move [with _Tp = A&](((A&)(-- __last)))' min.cpp:11: note: candidates are: A& A::operator=(A&)
So it seems that he does not find the correct operator = from A. Why? Why does it point with _Iterator = A* when I skip A?