I’ve just started using openFrameworks and am using the 0072 Visual Studio version. When I tried to build the empty sample project oF provided me with, it gave me only this error:
error C2039: ‘_Dynamic_tag’ : is not a member of ‘std::tr1’
I’m using Visual Studio 2012 Express and seemingly this issue has already been solved, but in VS2010 version, here.
I’ve checked the ofTypes.h with the solved one and there was not a difference.
Any idea?
My understanding is that VS2012 takes
std::tr1::out entirely in favour of having the new C++11 features instd::, though you may be able to put it back with some compiler option.If nothing else, it looks like OFW is using internal, implementation variables (the leading underscore is a clue), which was a pretty silly thing to do.
The implication then would be that OpenFrameWorks needs another update.