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 22
33 * inst/include/Rcpp/module/class.h: Use variadic templates unconditionally
44 * inst/include/Rcpp/grow.h: Idem
5+ * inst/include/Rcpp/DottedPair.h: Idem
56
67 * inst/include/Rcpp/module/Module_generated_class_constructor.h: Removed
78 * inst/include/Rcpp/module/Module_generated_class_factory.h: Idem
89 * inst/include/Rcpp/module/Module_generated_method.h: Idem
910 * inst/include/Rcpp/module/Module_generated_Pointer_method.h: Idem
1011 * inst/include/Rcpp/generated/grow__pairlist.h: Idem
12+ * inst/include/Rcpp/generated/DottedPair__ctors.h: Idem
1113
12142025-03-15 Dirk Eddelbuettel <
[email protected] >
1315
Original file line number Diff line number Diff line change 22//
33// DottedPair.h: Rcpp R/C++ interface class library -- dotted pair list template
44//
5- // Copyright (C) 2010 - 2013 Dirk Eddelbuettel and Romain Francois
5+ // Copyright (C) 2010 - 2025 Dirk Eddelbuettel and Romain Francois
66//
77// This file is part of Rcpp.
88//
@@ -35,14 +35,11 @@ RCPP_API_CLASS(DottedPair_Impl),
3535 DottedPair_Impl (SEXP x) {
3636 Storage::set__ (x) ;
3737 }
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>
4643
4744 void update (SEXP){}
4845
Original file line number Diff line number Diff line change 22//
33// grow.h: Rcpp R/C++ interface class library -- grow a pairlist
44//
5- // Copyright (C) 2010 - 2013 Dirk Eddelbuettel and Romain Francois
5+ // Copyright (C) 2010 - 2025 Dirk Eddelbuettel and Romain Francois
66//
77// This file is part of Rcpp.
88//
You can’t perform that action at this time.
0 commit comments