[Rcpp-commits] r4492 - pkg/Rcpp/R

noreply at r-forge.r-project.org noreply at r-forge.r-project.org
Mon Sep 16 02:50:39 CEST 2013


Author: edd
Date: 2013-09-16 02:50:39 +0200 (Mon, 16 Sep 2013)
New Revision: 4492

Modified:
   pkg/Rcpp/R/RcppLdpath.R
Log:
two base R functions we can access via :: instead of :::


Modified: pkg/Rcpp/R/RcppLdpath.R
===================================================================
--- pkg/Rcpp/R/RcppLdpath.R	2013-09-16 00:50:05 UTC (rev 4491)
+++ pkg/Rcpp/R/RcppLdpath.R	2013-09-16 00:50:39 UTC (rev 4492)
@@ -17,7 +17,7 @@
 
 ## make sure system.file returns an absolute path
 Rcpp.system.file <- function(...){
-    tools:::file_path_as_absolute( base:::system.file( ..., package = "Rcpp" ) )
+    tools::file_path_as_absolute( base::system.file( ..., package = "Rcpp" ) )
 }
 
 ## identifies if the default linking on the platform should be static



More information about the Rcpp-commits mailing list