If <cwchar> is included by libc++ then clang has problems picking the correct overloaded function (bug #1085)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@6518 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
anders_k 2014-07-08 18:35:54 +00:00
parent d709110ae2
commit e7b3911e53

View file

@ -75,7 +75,7 @@ typedef wchar_t TCHAR, _TUCHAR;
#define _tcscpy wcscpy
#define _tcsdup _wcsdup
#define _tcslen wcslen
#define _tcsrchr wcsrchr
#define _tcsrchr(s,c) ( wcsrchr((wchar_t*)(s), (c)) ) // bug #1085: If <cwchar> is included the compiler has problems picking the correct overloaded function
#define _tcsstr wcsstr
#define _tcstok wcstok