We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9714763 commit 8dcc96bCopy full SHA for 8dcc96b
ChangeLog
@@ -1,3 +1,8 @@
1
+2026-04-12 Dirk Eddelbuettel <edd@debian.org>
2
+
3
+ * inst/include/Rcpp/Nullable.h (Nullable): 'operator T()' is now
4
+ behind an opt-in #define
5
6
2026-04-09 Dirk Eddelbuettel <edd@debian.org>
7
8
* DESCRIPTION (Version, Date): Roll micro version and date
inst/include/Rcpp/Nullable.h
@@ -81,7 +81,7 @@ namespace Rcpp {
81
return m_sexp;
82
}
83
84
-#if R_VERSION > R_Version(4,3,0)
+#if R_VERSION > R_Version(4,3,0) && defined(RCPP_ENABLE_NULLABLE_T)
85
/**
86
* operator T() to return nullable object
87
*
0 commit comments