Re: vector and deque



i'm using VC6, and i have compile error


Alexander Nickolov a écrit :

Nothing wrong syntactically, and at a first glance it's
correct semantically as well (matching iterators and such).
What did you expect it to do that it doesn't?

--
=====================================
Alexander Nickolov
Microsoft MVP [VC], MCSD
email: agnickolov@xxxxxxxx
MVP VC FAQ: http://www.mvps.org/vcfaq
=====================================

"Simply_Red" <Simply.Red75@xxxxxxxxx> wrote in message
news:1164043331.735978.244720@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
what is wrong with this code:

ContoursAX, ContoursAY vectors of double

NewLeftPointsX,NewLeftPointsY deques of double

ContoursAX.insert( ContoursAX.end(), NewLeftPointsX.begin(),
NewLeftPointsX.end() );
ContoursAY.insert( ContoursAY.end(), NewLeftPointsY.begin(),
NewLeftPointsY.end() );


.



Relevant Pages