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
7 changes: 7 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2025-12-04 Iñaki Ucar <iucar@fedoraproject.org>

* inst/include/Rcpp/r/headers.h: Include <R_ext/Visibility.h>
* inst/include/RcppCommon.h: Drop <R_ext/Callbacks.h>, not used anymore
and dropped from the API; drop <R_ext/Visibility.h>, included above
* src/api.cpp: Drop <R_ext/PrtUtil.h>, dropped from the API

2025-12-03 Dirk Eddelbuettel <edd@debian.org>

* DESCRIPTION (Version, Date): Roll micro version and date
Expand Down
2 changes: 2 additions & 0 deletions inst/include/Rcpp/r/headers.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
//
// Copyright (C) 2008 - 2009 Dirk Eddelbuettel
// Copyright (C) 2009 - 2024 Dirk Eddelbuettel and Romain Francois
// Copyright (C) 2025 Dirk Eddelbuettel, Romain Francois and Iñaki Ucar
//
// This file is part of Rcpp.
//
Expand Down Expand Up @@ -72,6 +73,7 @@
#include <R_ext/Complex.h>
#include <R_ext/Parse.h>
#include <R_ext/Rdynload.h>
#include <R_ext/Visibility.h>
#include <Rversion.h>

/* Ensure NORET defined (normally provided by R headers with R >= 3.2.0) */
Expand Down
2 changes: 0 additions & 2 deletions inst/include/RcppCommon.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,6 @@ namespace Rcpp {
#include <typeinfo>
#include <utility>
#include <Rcpp/sprintf.h>
#include <R_ext/Callbacks.h>
#include <R_ext/Visibility.h>
#include <Rcpp/utils/tinyformat.h>

#include <Rmath.h>
Expand Down
1 change: 0 additions & 1 deletion src/api.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
using namespace Rcpp;

#include "internal.h"
#include <R_ext/PrtUtil.h>

#ifdef RCPP_HAS_DEMANGLING
#include <cxxabi.h>
Expand Down