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 98ecceb commit f17ee6aCopy full SHA for f17ee6a
2 files changed
ChangeLog
@@ -1,6 +1,11 @@
1
+2017-02-01 Dirk Eddelbuettel <edd@debian.org>
2
+
3
+ * inst/include/Rcpp/algorithm.h (RCPP_CONSTEXPR): Further refinement for
4
+ Intel compiler without C++11
5
6
2017-01-31 Dirk Eddelbuettel <edd@debian.org>
7
- * DESCRIPTION (Date, Version): Roll minor version
8
+ * DESCRIPTION (Date, Version): Roll minor version
9
10
* inst/include/Rcpp/algorithm.h: Allow algorithm.h to be compiler under
11
Intel's compiler, add copyright header and include guard
inst/include/Rcpp/algorithm.h
@@ -24,6 +24,8 @@
24
25
#if __cplusplus >= 201103L || __INTEL_CXX11_MODE__ == 1
26
# define RCPP_CONSTEXPR constexpr
27
+#elif defined(__INTEL_COMPILER)
28
+# define RCPP_CONSTEXPR
29
#else
30
# define RCPP_CONSTEXPR const
31
#endif
0 commit comments