mirror of
https://github.com/nemtrif/utfcpp.git
synced 2025-04-05 05:25:07 +00:00
fix msvc support for UTF_CPP_CPLUSPLUS support
This commit is contained in:
parent
b26a5f718f
commit
ec553b96de
1 changed files with 5 additions and 1 deletions
|
@ -37,7 +37,11 @@ DEALINGS IN THE SOFTWARE.
|
|||
// Otherwise, trust the unreliable predefined macro __cplusplus
|
||||
|
||||
#if !defined UTF_CPP_CPLUSPLUS
|
||||
#define UTF_CPP_CPLUSPLUS __cplusplus
|
||||
#if defined _MSVC_LANG
|
||||
#define UTF_CPP_CPLUSPLUS _MSVC_LANG
|
||||
#else
|
||||
#define UTF_CPP_CPLUSPLUS __cplusplus
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if UTF_CPP_CPLUSPLUS >= 201103L // C++ 11 or later
|
||||
|
|
Loading…
Add table
Reference in a new issue