File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
inst/include/Rcpp/platform Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 112013-09-14 Dirk Eddelbuettel <edd@debian.org>
22
3+ * inst/include/Rcpp/platform/compiler.h: Further refine #if test for
4+ 'long long' by conditioning __LP64__ on also using clang/llvm
5+
36 * src/attributes.cpp (Rcpp): Precede closing '>' by space to avoid '>>'
47
582013-09-13 Romain Francois <romain@r-enthusiasts.com>
Original file line number Diff line number Diff line change 178178#endif
179179
180180#ifdef __GNUC__
181- #if defined(__GXX_EXPERIMENTAL_CXX0X__) || defined( __LP64__)
181+ #if defined(__GXX_EXPERIMENTAL_CXX0X__) || ( defined (__clang__) && defined( __LP64__) )
182182#ifdef __LONG_LONG_MAX__
183183 __extension__ typedef long long int rcpp_long_long_type;
184184 __extension__ typedef unsigned long long int rcpp_ulong_long_type;
You can’t perform that action at this time.
0 commit comments