error C2668: 'std::basic_string<wchar_t,std::char_traits<wchar_t>,std::allocator<wchar_t>>::find_first_not_of' : ambiguous call to overloaded function
我在Visual Studio 2013中收到此错误,但在MinGW中没有。我该怎么办?
我尝试添加cache.std :: wstring :: find_first_not_of,但这没有帮助。
我的代码:
wstring cache = key.GetExpandStringValue(L"Path");
int empregnul = 0;
if(cache.find_first_not_of('\0') == wstring::npos)
{
empregnul = 1;
}