error C3861: 'back_inserter': identifier not found VC++ 2010 error C3861: 'back_inserter': identifier not found If you get this error when compiling apps that previously worked in VC++ 2010, you should try to add this line to you source file: #include <iterator> Similarly for insert_iterator. |