I'm currently trying to use googletest with MinGW and -std=c++0x
but it complains that _stricmp is not declared in this scope
which it doesn't when I do not use -std=c++0x
.
I have no idea what _stricmp
is, I just found out that it is defined in cstring/string.h
, so why is it gone in C++0x?