Quantcast
Viewing all articles
Browse latest Browse all 40524

Openframeworks 0.9.0 does not work with CLR?

mutex is part of the standard library since c++11 and we use it now in a couple of places so unless visual studio updates the CLR to work with that it won't be compatible.

googling a bit it seems that you can enable clr per file so if you manage to include only parts that don't use classes like mutex that can be conflicting you can use clr on those files.

another option is to try switching all appearances of std::mutex to Poco::mutex or some similar mutex class but it's used now in quite a few places.


Viewing all articles
Browse latest Browse all 40524

Trending Articles