Skip to content

Commit 67cbe48

Browse files
committed
please R CMD check
1 parent 387079d commit 67cbe48

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2016-07-13 Dirk Eddelbuettel <[email protected]>
2+
3+
* NAMESPACE: Add import for glob2rx to please R CMD check
4+
* man/cppFunction.Rd: line break below 90 columns to please R CMD check
5+
16
2016-07-11 J.J. Allaire <[email protected]>
27

38
* R/Attributes.R Add cacheDir argument to sourceCpp to enable caching of

NAMESPACE

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
useDynLib(Rcpp, .registration = TRUE)
22

33
import(methods)
4-
importFrom(utils, capture.output, assignInNamespace, .DollarNames, prompt, packageDescription, package.skeleton)
4+
importFrom(utils, capture.output, assignInNamespace, .DollarNames, prompt,
5+
packageDescription, package.skeleton, glob2rx)
56

67
exportClasses(Module, "C++Field",
78
"C++OverloadedMethods",
@@ -33,7 +34,7 @@ export(Module,
3334
cpp_object_dummy,
3435
Rcpp.plugin.maker
3536
)
36-
S3method( print, bytes )
37+
S3method(print, bytes)
3738
exportClass(RcppClass)
3839

3940

man/cppFunction.Rd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ Dynamically define an R function with C++ source code. Compiles and links a shar
88
}
99
\usage{
1010
cppFunction(code, depends = character(), plugins = character(), includes = character(),
11-
env = parent.frame(), rebuild = FALSE, cacheDir = getOption("rcpp.cache.dir", tempdir()),
12-
showOutput = verbose, verbose = getOption("verbose"))
11+
env = parent.frame(), rebuild = FALSE, cacheDir = getOption("rcpp.cache.dir",
12+
tempdir()), showOutput = verbose, verbose = getOption("verbose"))
1313
}
1414

1515
\arguments{

0 commit comments

Comments
 (0)