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 13edd23 commit 6497a9aCopy full SHA for 6497a9a
ChangeLog
@@ -2,6 +2,8 @@
2
3
* include/Rcpp/platform/compiler.h : patch submitted by Murray for better
4
support of long long type.
5
+ * include/Rcpp/platform/compiler.h : gcc 4.2.1 has tr1/unordered_map
6
+ and tr1/unordered_set. Previous test was for gcc 4.4.0 for some reason
7
8
2013-08-31 Dirk Eddelbuettel <edd@debian.org>
9
inst/include/Rcpp/platform/compiler.h
@@ -116,7 +116,7 @@
116
// Check TR1 Headers
117
#if defined(__INTEL_COMPILER) || (defined(__GNUC__) && !defined(__clang__))
118
#if defined(__GLIBCXX__)
119
- #if GCC_VERSION >= 40400
+ #if GCC_VERSION >= 40201
120
#define HAS_TR1_UNORDERED_MAP
121
#define HAS_TR1_UNORDERED_SET
122
#endif
0 commit comments