[Rcpp-commits] r2501 - scripts

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Tue Nov 23 14:44:18 CET 2010


Author: romain
Date: 2010-11-23 14:44:17 +0100 (Tue, 23 Nov 2010)
New Revision: 2501

Modified:
   scripts/generator_Module_CppFunction.R
Log:
typo

Modified: scripts/generator_Module_CppFunction.R
===================================================================
--- scripts/generator_Module_CppFunction.R	2010-11-23 13:39:50 UTC (rev 2500)
+++ scripts/generator_Module_CppFunction.R	2010-11-23 13:44:17 UTC (rev 2501)
@@ -9,7 +9,7 @@
 class CppFunction%d : public CppFunction {
 	public:
 
-		CppFunction%d(OUT (*fun)(%s) , const char* docstring = 0) : CppFunction(docsring), ptr_fun(fun){}
+		CppFunction%d(OUT (*fun)(%s) , const char* docstring = 0) : CppFunction(docstring), ptr_fun(fun){}
 		
 		SEXP operator()(SEXP* args) throw(std::exception){
 			return Rcpp::wrap( ptr_fun( %s ) ) ;



More information about the Rcpp-commits mailing list