We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1761e1d commit 695a2d1Copy full SHA for 695a2d1
ChangeLog
@@ -1,3 +1,7 @@
1
+2024-10-31 Kevin Ushey <kevinushey@gmail.com>
2
+
3
+ * inst/include/Rcpp/r/compat.h: Require R (>= 4.5.0) for new APIs
4
5
2024-10-26 Dirk Eddelbuettel <edd@debian.org>
6
7
* DESCRIPTION (Version, Date): Roll micro version to 1.0.13.4
inst/include/Rcpp/r/compat.h
@@ -24,13 +24,13 @@
24
25
#include <Rversion.h>
26
27
-#if R_VERSION >= R_Version(4, 4, 2)
+#if R_VERSION >= R_Version(4, 5, 0)
28
# define RCPP_STRING_PTR STRING_PTR_RO
29
#else
30
# define RCPP_STRING_PTR STRING_PTR
31
#endif
32
33
34
# define RCPP_VECTOR_PTR VECTOR_PTR_RO
35
36
# define RCPP_VECTOR_PTR VECTOR_PTR
0 commit comments