Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
2026-05-05 Dirk Eddelbuettel <edd@debian.org>

* inst/include/Rcpp/Nullable.h (Nullable): Switch operatorT() from
opt-in to opt-out as six downstream packages have updated at CRAN

* docker/ci-4.5/Dockerfile: Added based on r-base:4.5.3
* .github/workflows/ci.yaml (jobs): Add rcpp/ci-4.5 to matrix

Expand Down
7 changes: 3 additions & 4 deletions inst/include/Rcpp/Nullable.h
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
// -*- mode: C++; c-indent-level: 4; c-basic-offset: 4; indent-tabs-mode: nil; -*-
//

// Nullable.h: Rcpp R/C++ interface class library -- SEXP container which can be NULL
//
// Copyright (C) 2015 Dirk Eddelbuettel and Daniel C. Dillon
// Copyright (C) 2015-2026 Dirk Eddelbuettel and Daniel C. Dillon
//
// This file is part of Rcpp.
//
Expand Down Expand Up @@ -81,7 +80,7 @@ namespace Rcpp {
return m_sexp;
}

#if R_VERSION > R_Version(4,3,0) && defined(RCPP_ENABLE_NULLABLE_T)
#if R_VERSION > R_Version(4,3,0) && !defined(RCPP_DISABLE_NULLABLE_T)
/**
* operator T() to return nullable object
*
Expand Down
Loading