File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed
Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 1+ 2015-04-22 Kevin Ushey <kevinushey@gmail.com>
2+
3+ * inst/include/Rcpp/utils/tinyformat.h: don't use C++11 features
4+
152015-04-14 Dirk Eddelbuettel <edd@debian.org>
26
37 * .travis.yml (sudo): Adding 'sudo: required' to force older Travis backend
Original file line number Diff line number Diff line change @@ -128,10 +128,8 @@ namespace Rcpp {
128128}
129129#define TINYFORMAT_ERROR (REASON ) ::Rcpp::stop(REASON)
130130
131- // Define for C++11 variadic templates which make the code shorter & more
132- // general. If you don't define this, C++11 support is autodetected below.
133- // #define TINYFORMAT_USE_VARIADIC_TEMPLATES
134-
131+ // don't use C++11 features (support older compilers)
132+ #define TINYFORMAT_NO_VARIADIC_TEMPLATES
135133
136134// ------------------------------------------------------------------------------
137135// Implementation details.
You can’t perform that action at this time.
0 commit comments