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 8ca05a1 commit 13edd23Copy full SHA for 13edd23
ChangeLog
@@ -1,3 +1,8 @@
1
+2013-09-12 Romain Francois <romain@r-enthusiasts.com>
2
+
3
+ * include/Rcpp/platform/compiler.h : patch submitted by Murray for better
4
+ support of long long type.
5
6
2013-08-31 Dirk Eddelbuettel <edd@debian.org>
7
8
* inst/doc/*: Moved all vignettes to vignettes/*
inst/include/Rcpp/platform/compiler.h
@@ -185,7 +185,7 @@
185
#endif
186
187
#ifdef __GNUC__
188
-#ifdef __GXX_EXPERIMENTAL_CXX0X__
+#if defined(__GXX_EXPERIMENTAL_CXX0X__) || defined(__LP64__)
189
#ifdef __LONG_LONG_MAX__
190
__extension__ typedef long long int rcpp_long_long_type;
191
__extension__ typedef unsigned long long int rcpp_ulong_long_type;
0 commit comments