Fatal Error - Need Help

Hmm, back_inserter is a standard template provided by STL. It’s a simple class that uses an STL iterator interface to call insert() on its object with each store operation.

Perhaps it must be included from some nonstandard header file in VS2010?

Edit: ah, a quick Google search turns up the answer. Add an #include line to any file that references back_inserter.

David