Skip to content
Snippets Groups Projects
Commit 0183a459 authored by Gennadiy Civil's avatar Gennadiy Civil
Browse files

Merge pull request #2270 from Peter-Levine:fix-signed-wchar

PiperOrigin-RevId: 251713108
parents 31200def 711fccf8
No related branches found
No related tags found
No related merge requests found
......@@ -115,8 +115,11 @@ inline Element* GetRawPointer(Element* p) { return p; }
//
// To gcc,
// wchar_t == signed wchar_t != unsigned wchar_t == unsigned int
//
// gcc-9 appears to treat signed/unsigned wchar_t as ill-formed
// regardless of the signage of its underlying type.
#ifdef __GNUC__
#if !defined(__WCHAR_UNSIGNED__)
#if !defined(__WCHAR_UNSIGNED__) && (__GNUC__ < 9)
// signed/unsigned wchar_t are valid types.
# define GMOCK_HAS_SIGNED_WCHAR_T_ 1
#endif
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment