[Rcpp-devel] plugin in a package - how is it registered?

Dirk Eddelbuettel edd at debian.org
Mon Oct 14 14:05:21 CEST 2013


On 14 October 2013 at 11:55, Simon Zehnder wrote:
| Does anyone have an explanation what is going on and if I might have forgotten something in my code? 

AFAIK this has nothing to do with Rcpp. When you do

      foo <- readLines("someFile.txt")

you now get the warning, whereas in the past you did not. 

It seems one now needs 

      con <- file("someFile.txt")
      foo <- readLines(con)
      close(con)    
 
Dirk

-- 
Dirk Eddelbuettel | edd at debian.org | http://dirk.eddelbuettel.com


More information about the Rcpp-devel mailing list