We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55aa812 commit db587f0Copy full SHA for db587f0
include/eigenpy/fwd.hpp
@@ -13,6 +13,18 @@
13
#define EIGENPY_MSVC_COMPILER
14
#endif
15
16
+#if (__cplusplus >= 201703L || (defined(_MSVC_LANG) && _MSVC_LANG >= 201703))
17
+#define EIGENPY_WITH_CXX17_SUPPORT
18
+#endif
19
+
20
+#if (__cplusplus >= 201402L || (defined(_MSVC_LANG) && _MSVC_LANG >= 201403))
21
+#define EIGENPY_WITH_CXX14_SUPPORT
22
23
24
+#if (__cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER >= 1600))
25
+#define EIGENPY_WITH_CXX11_SUPPORT
26
27
28
#define EIGENPY_STRING_LITERAL(string) #string
29
#define EIGENPY_STRINGIZE(string) EIGENPY_STRING_LITERAL(string)
30
#define _EIGENPY_PPCAT(A, B) A##B
0 commit comments