[Rcpp-commits] r2045 - pkg/Rcpp/inst/include/Rcpp

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Thu Aug 19 11:06:59 CEST 2010


Author: romain
Date: 2010-08-19 11:06:59 +0200 (Thu, 19 Aug 2010)
New Revision: 2045

Modified:
   pkg/Rcpp/inst/include/Rcpp/config.h
Log:
add RCPP_VERSION and Rcpp_Version macros

Modified: pkg/Rcpp/inst/include/Rcpp/config.h
===================================================================
--- pkg/Rcpp/inst/include/Rcpp/config.h	2010-08-19 06:59:21 UTC (rev 2044)
+++ pkg/Rcpp/inst/include/Rcpp/config.h	2010-08-19 09:06:59 UTC (rev 2045)
@@ -29,5 +29,8 @@
 #define RCPP_HAS_DEMANGLING
 #endif
 
+#define Rcpp_Version(v,p,s) (((v) * 65536) + ((p) * 256) + (s))
+#define RCPP_VERSION Rcpp_Version(0,8,6)
+
 #endif
 



More information about the Rcpp-commits mailing list