Skip to content

Commit 13edd23

Browse files
murray long long patch
1 parent 8ca05a1 commit 13edd23

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
16
2013-08-31 Dirk Eddelbuettel <edd@debian.org>
27

38
* inst/doc/*: Moved all vignettes to vignettes/*

inst/include/Rcpp/platform/compiler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
#endif
186186

187187
#ifdef __GNUC__
188-
#ifdef __GXX_EXPERIMENTAL_CXX0X__
188+
#if defined(__GXX_EXPERIMENTAL_CXX0X__) || defined(__LP64__)
189189
#ifdef __LONG_LONG_MAX__
190190
__extension__ typedef long long int rcpp_long_long_type;
191191
__extension__ typedef unsigned long long int rcpp_ulong_long_type;

0 commit comments

Comments
 (0)