On 22/02/2016 at 06:57, xxxxxxxx wrote:
User Information:
Cinema 4D Version: R17
Platform: Windows ;
Language(s) : C++ ;
---------
Hello.
The following code gives me a very annoying warning:
warning C4800: 'Bool' : forcing value to bool 'true' or 'false' (performance warning)
String name = "AnyName";
std::map<String, Real *> map;
bool name_exists = map.find(name) != map.end();
Is there any way to get rid of it ?
Thank you.