File tree Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Expand file tree Collapse file tree 3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change
1
+ 2017-10-30 Dirk Eddelbuettel <
[email protected] >
2
+
3
+ * inst/include/Rcpp.h: Unless RCPP_FORCE_OLD_DATE_DATETIME_VECTORS is
4
+ defined, define RCPP_NEW_DATE_DATETIME_VECTORS to switch to new date and
5
+ datetime vector as announced in release 0.12.8 one year ago
6
+
1
7
2017-10-03 Dirk Eddelbuettel <
[email protected] >
2
8
3
9
* inst/include/Rcpp/iostream/Rstreambuf.h: White-space edits
Original file line number Diff line number Diff line change 11
11
added to \code {MatrixRow } as well (Dan Dillon in \ghpr {750 }).
12
12
\item The \code {Rostream } object now contains a \code {Buffer } rather than
13
13
allocating one (Kirill M üller in \ghpr {763 }).
14
+ \item New \code {DateVector } and \code {DatetimeVector } classes are now the
15
+ default fully deprecating the old classes as announced one year ago.
16
+
14
17
}
15
18
\item Changes in Rcpp Package :
16
19
\itemize {
Original file line number Diff line number Diff line change 56
56
#include < Rcpp/Formula.h>
57
57
#include < Rcpp/DataFrame.h>
58
58
59
- // #define RCPP_NEW_DATE_DATETIME_VECTORS 1
59
+ #if !defined(RCPP_FORCE_OLD_DATE_DATETIME_VECTORS)
60
+ #define RCPP_NEW_DATE_DATETIME_VECTORS 1
61
+ #endif
60
62
#include < Rcpp/date_datetime/date_datetime.h>
61
63
62
64
#include < Rcpp/Na_Proxy.h>
You can’t perform that action at this time.
0 commit comments