Fix Unix build. Use S("...") instead of L"..." for better compatibility.

This commit is contained in:
Artem Martynovich
2015-07-14 02:13:16 +06:00
parent e3518b674c
commit 0e5c4b9de4
5 changed files with 17 additions and 15 deletions

View File

@@ -39,8 +39,9 @@
#ifdef WIN32
typedef std::wstring tstring;
typedef wchar_t tchar;
#define S(s) L ## s
#else
#define L
#define S(s) s
typedef std::string tstring;
typedef char tchar;
#endif