Skip to content

Commit

Permalink
Fix wchar_t type.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonsimantov committed Feb 24, 2023
1 parent a51cac1 commit d5545f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/filesystem.h
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ typedef std::wstring PathString;
#define PathStringLiteral(x) PathString(L##x)
#define kPathStringEmpty PathString(L"")
#define kPathStringSep PathString(L"\\")
#define PathStringChar wchar
#define PathStringChar wchar_t
#define PathStringLiteralPrefix L
#else
typedef std::string PathString;
Expand Down

0 comments on commit d5545f8

Please sign in to comment.