[Rcpp-commits] r3244 - pkg/int64/inst/include
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Sat Oct 29 17:06:57 CEST 2011
Author: edd
Date: 2011-10-29 17:06:57 +0200 (Sat, 29 Oct 2011)
New Revision: 3244
Modified:
pkg/int64/inst/include/int64.h
Log:
linux build fix: stdint (was already commited by Romain in parallel) and limits
Modified: pkg/int64/inst/include/int64.h
===================================================================
--- pkg/int64/inst/include/int64.h 2011-10-29 14:29:48 UTC (rev 3243)
+++ pkg/int64/inst/include/int64.h 2011-10-29 15:06:57 UTC (rev 3244)
@@ -24,7 +24,8 @@
#define R_NO_REMAP
#include <R.h>
#include <Rinternals.h>
-#include <stdint.h>
+#include <stdint.h> // replace with cstdint if newer C++ standard used
+#include <limits> // for numeric_limits
#include <string>
#include <int64/int64.h>
More information about the Rcpp-commits
mailing list