Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Stack Of Tasks
pinocchio
Commits
a7c45a1c
Verified
Commit
a7c45a1c
authored
Oct 03, 2020
by
Justin Carpentier
Browse files
core: enhance Windows support
parent
3eee09f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/macros.hpp
View file @
a7c45a1c
...
...
@@ -10,7 +10,7 @@
#if __cplusplus >= 201703L
#define PINOCCHIO_WITH_CXX17_SUPPORT
#elif defined(_MSVC_LANG)
#elif defined(_MSVC_LANG)
&& !(defined(__EDG__) && defined(__clang__))
#if _MSVC_LANG >= 201703L
#define PINOCCHIO_WITH_CXX17_SUPPORT
#endif
...
...
@@ -18,7 +18,7 @@
#if __cplusplus >= 201403L
#define PINOCCHIO_WITH_CXX14_SUPPORT
#elif defined(_MSVC_LANG)
#elif defined(_MSVC_LANG)
&& !(defined(__EDG__) && defined(__clang__))
#if _MSVC_LANG >= 201403L
#define PINOCCHIO_WITH_CXX14_SUPPORT
#endif
...
...
@@ -26,7 +26,7 @@
#if __cplusplus >= 201103L
#define PINOCCHIO_WITH_CXX11_SUPPORT
#elif defined(_WIN32)
#elif defined(_WIN32)
&& !(defined(__EDG__) && defined(__clang__))
#ifdef PINOCCHIO_WITH_CXX14_SUPPORT
#define PINOCCHIO_WITH_CXX11_SUPPORT
#endif
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment