File tree Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Expand file tree Collapse file tree 3 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 2
2
3
3
* inst/include/Rcpp/module/class.h: Use variadic templates unconditionally
4
4
* inst/include/Rcpp/grow.h: Idem
5
+ * inst/include/Rcpp/DottedPair.h: Idem
5
6
6
7
* inst/include/Rcpp/module/Module_generated_class_constructor.h: Removed
7
8
* inst/include/Rcpp/module/Module_generated_class_factory.h: Idem
8
9
* inst/include/Rcpp/module/Module_generated_method.h: Idem
9
10
* inst/include/Rcpp/module/Module_generated_Pointer_method.h: Idem
10
11
* inst/include/Rcpp/generated/grow__pairlist.h: Idem
12
+ * inst/include/Rcpp/generated/DottedPair__ctors.h: Idem
11
13
12
14
2025-03-15 Dirk Eddelbuettel <
[email protected] >
13
15
Original file line number Diff line number Diff line change 2
2
//
3
3
// DottedPair.h: Rcpp R/C++ interface class library -- dotted pair list template
4
4
//
5
- // Copyright (C) 2010 - 2013 Dirk Eddelbuettel and Romain Francois
5
+ // Copyright (C) 2010 - 2025 Dirk Eddelbuettel and Romain Francois
6
6
//
7
7
// This file is part of Rcpp.
8
8
//
@@ -35,14 +35,11 @@ RCPP_API_CLASS(DottedPair_Impl),
35
35
DottedPair_Impl (SEXP x) {
36
36
Storage::set__ (x) ;
37
37
}
38
- #if defined(HAS_VARIADIC_TEMPLATES)
39
- template <typename ... T>
40
- DottedPair_Impl (const T&... args) {
41
- Storage::set__ (pairlist (args...));
42
- }
43
- #else
44
- #include < Rcpp/generated/DottedPair__ctors.h>
45
- #endif
38
+ template <typename ... T>
39
+ DottedPair_Impl (const T&... args) {
40
+ Storage::set__ (pairlist (args...));
41
+ }
42
+ // RM #include <Rcpp/generated/DottedPair__ctors.h>
46
43
47
44
void update (SEXP){}
48
45
Original file line number Diff line number Diff line change 2
2
//
3
3
// grow.h: Rcpp R/C++ interface class library -- grow a pairlist
4
4
//
5
- // Copyright (C) 2010 - 2013 Dirk Eddelbuettel and Romain Francois
5
+ // Copyright (C) 2010 - 2025 Dirk Eddelbuettel and Romain Francois
6
6
//
7
7
// This file is part of Rcpp.
8
8
//
You can’t perform that action at this time.
0 commit comments