We have some code written with TR1, e.g.:
#include <tr1/functional>
...
typedef std::tr1::function<void(int)> MyFunction;
..
It works fine by compiling with GCC, but failed with VS2010.
Our code has compatibility issue with C++11 so I'm afraid I can't simply switch to C++11. I don't want to introduce boost into our code either.
Is there any pack or something I should download for VS2010 to make it support TR1?