We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7419dfc commit a882203Copy full SHA for a882203
R/Attributes.R
@@ -113,7 +113,7 @@ sourceCpp <- function(file = "",
113
114
# unload and delete existing dylib if necessary
115
if (file.exists(context$previousDynlibPath)) {
116
- try(silent=T, dyn.unload(context$previousDynlibPath))
+ try(silent=TRUE, dyn.unload(context$previousDynlibPath))
117
file.remove(context$previousDynlibPath)
118
}
119
@@ -200,7 +200,8 @@ sourceCpp <- function(file = "",
200
201
# return (invisibly) a list containing exported functions and modules
202
invisible(list(functions = context$exportedFunctions,
203
- modules = context$modules))
+ modules = context$modules,
204
+ buildDirectory = context$buildDirectory))
205
206
207
# Define a single C++ function
0 commit comments