fix: Build with _UNICODE support on Windows

This commit is contained in:
Andreas Schuh 2018-11-09 15:49:02 +00:00
parent 7e70988188
commit b051bace27

View file

@ -1341,8 +1341,8 @@ string CommandLineFlagParser::ProcessOptionsFromStringLocked(
|| fnmatch(glob.c_str(), ProgramInvocationName(), FNM_PATHNAME) == 0
|| fnmatch(glob.c_str(), ProgramInvocationShortName(), FNM_PATHNAME) == 0
#elif defined(HAVE_SHLWAPI_H)
|| PathMatchSpec(glob.c_str(), ProgramInvocationName())
|| PathMatchSpec(glob.c_str(), ProgramInvocationShortName())
|| PathMatchSpecA(glob.c_str(), ProgramInvocationName())
|| PathMatchSpecA(glob.c_str(), ProgramInvocationShortName())
#endif
) {
flags_are_relevant = true;