[Rcpp-commits] r1058 - in pkg/Rcpp: . R man

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Sat Apr 17 14:27:36 CEST 2010


Author: romain
Date: 2010-04-17 14:27:36 +0200 (Sat, 17 Apr 2010)
New Revision: 1058

Modified:
   pkg/Rcpp/DESCRIPTION
   pkg/Rcpp/R/cppfunction.R
   pkg/Rcpp/man/cppfunction.Rd
Log:
remove uses of .Cpp

Modified: pkg/Rcpp/DESCRIPTION
===================================================================
--- pkg/Rcpp/DESCRIPTION	2010-04-17 12:24:58 UTC (rev 1057)
+++ pkg/Rcpp/DESCRIPTION	2010-04-17 12:27:36 UTC (rev 1058)
@@ -1,6 +1,6 @@
 Package: Rcpp
 Title: Rcpp R/C++ interface package
-Version: 0.7.12.5
+Version: 0.7.12.6
 Date: $Date$
 Author: Dirk Eddelbuettel and Romain Francois, with contributions 
  by Simon Urbanek, David Reiss and Douglas Bates; based on code written during 

Modified: pkg/Rcpp/R/cppfunction.R
===================================================================
--- pkg/Rcpp/R/cppfunction.R	2010-04-17 12:24:58 UTC (rev 1057)
+++ pkg/Rcpp/R/cppfunction.R	2010-04-17 12:27:36 UTC (rev 1058)
@@ -67,7 +67,7 @@
 cppfunction <- function (sig = character(), body = character(), includes = character(), 
     otherdefs = character(), verbose = FALSE, 
     cppargs = character(), cxxargs = character(), libargs = character(), 
-    .Cpp = TRUE, namespace = TRUE ){
+    namespace = TRUE ){
 	
     ok <- HAVEINLINE                                                                                
 	if( !ok){

Modified: pkg/Rcpp/man/cppfunction.Rd
===================================================================
--- pkg/Rcpp/man/cppfunction.Rd	2010-04-17 12:24:58 UTC (rev 1057)
+++ pkg/Rcpp/man/cppfunction.Rd	2010-04-17 12:27:36 UTC (rev 1058)
@@ -9,8 +9,8 @@
 }
 \usage{
 cppfunction(sig = character(), body = character(), includes = character(), 
-otherdefs = character(), verbose = FALSE, cppargs = character(), 
-cxxargs = character(), libargs = character(), .Cpp = TRUE, namespace = TRUE)
+	otherdefs = character(), verbose = FALSE, cppargs = character(), 
+	cxxargs = character(), libargs = character(), namespace = TRUE)
 }
 \arguments{
 \item{sig}{Signature. See \link[inline]{cfunction}}
@@ -21,9 +21,6 @@
 \item{cppargs}{See \link[inline]{cfunction}}
 \item{cxxargs}{See \link[inline]{cfunction}}
 \item{libargs}{See \link[inline]{cfunction}}
-\item{.Cpp}{If \code{TRUE} (which is the default and is recommended), 
-  	  the call to \link{.Call} is replaced by a call to \link{.Cpp}
-  	  which is identical except that it handles c++ exceptions
 }
 \item{namespace}{If \code{TRUE} the line "using namespace Rcpp; " is added
 to the includes list}



More information about the Rcpp-commits mailing list