File tree Expand file tree Collapse file tree 2 files changed +6
-14
lines changed Expand file tree Collapse file tree 2 files changed +6
-14
lines changed Original file line number Diff line number Diff line change 16
16
* src/barrier.cpp: Avoid using {STRING/VECTOR}_PTR
17
17
* inst/include/Rcpp/r/compat.h: Include compatibility defines
18
18
19
+ 2024-07-05 Kevin Ushey <
[email protected] >
20
+
21
+ * inst/include/Rcpp/Environment.h: Drop support for UserDefinedDatabase
22
+ [ merged 2024-07-22 after release of Rcpp 1.0.13 ]
23
+
19
24
2024-06-22 Dirk Eddelbuettel <
[email protected] >
20
25
21
26
* DESCRIPTION (Version, Date): Roll micro version
Original file line number Diff line number Diff line change @@ -84,12 +84,7 @@ namespace Rcpp{
84
84
*/
85
85
SEXP ls (bool all) const {
86
86
SEXP env = Storage::get__ () ;
87
- if ( is_user_database () ){
88
- R_ObjectTable *tb = (R_ObjectTable*) R_ExternalPtrAddr (HASHTAB (env));
89
- return tb->objects (tb) ;
90
- } else {
91
- return R_lsInternal ( env, all ? TRUE : FALSE ) ;
92
- }
87
+ return R_lsInternal ( env, all ? TRUE : FALSE ) ;
93
88
return R_NilValue ;
94
89
}
95
90
@@ -318,14 +313,6 @@ namespace Rcpp{
318
313
return R_BindingIsActive (nameSym, Storage::get__ ()) ;
319
314
}
320
315
321
- /* *
322
- * Indicates if this is a user defined database.
323
- */
324
- bool is_user_database () const {
325
- SEXP env = Storage::get__ () ;
326
- return OBJECT (env) && Rf_inherits (env, " UserDefinedDatabase" ) ;
327
- }
328
-
329
316
/* *
330
317
* @return the global environment. See ?globalenv
331
318
*/
You can’t perform that action at this time.
0 commit comments