[Rcpp-commits] r4165 - pkg/Rcpp/inst/include/Rcpp
noreply at r-forge.r-project.org
noreply at r-forge.r-project.org
Thu Dec 20 23:38:15 CET 2012
Author: edd
Date: 2012-12-20 23:38:14 +0100 (Thu, 20 Dec 2012)
New Revision: 4165
Modified:
pkg/Rcpp/inst/include/Rcpp/config.h
Log:
correct version comparison constant to make g++-4.7 happy
Modified: pkg/Rcpp/inst/include/Rcpp/config.h
===================================================================
--- pkg/Rcpp/inst/include/Rcpp/config.h 2012-12-17 12:28:42 UTC (rev 4164)
+++ pkg/Rcpp/inst/include/Rcpp/config.h 2012-12-20 22:38:14 UTC (rev 4165)
@@ -24,8 +24,8 @@
#define Rcpp_Version(v,p,s) (((v) * 65536) + ((p) * 256) + (s))
-// 0.10.1.02 for devel version
-#define RCPP_VERSION Rcpp_Version(0,10,1.02)
+// All three digits have to be integers for g++-4.7 or later
+#define RCPP_VERSION Rcpp_Version(0,10,2)
#endif
More information about the Rcpp-commits
mailing list