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 67b60cc commit 4e86908Copy full SHA for 4e86908
inst/include/Rcpp/platform/compiler.h
@@ -58,6 +58,11 @@
58
#endif
59
60
61
+// Check for the presence of C++0x (or later) support
62
+#if defined(__GXX_EXPERIMENTAL_CXX0X__) || (__cplusplus >= 201103L)
63
+ #define RCPP_USING_CXX0X_OR_LATER
64
+#endif
65
+
66
// Check C++0x/11 features
67
#if defined(__INTEL_COMPILER)
68
#if __cplusplus >= 201103L
0 commit comments