From a6678f5263364601628ec77a253b58db79c74e8c Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Mon, 8 Jun 2026 20:06:02 -0500 Subject: [PATCH] Prefix three messages with 'Rcpp:::' --- ChangeLog | 5 +++++ R/RcppLdpath.R | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 9f1a85947..4f42662c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2026-06-08 Dirk Eddelbuettel + + * R/RcppLdpath.R: Prefix three messages with 'Rcpp:::' to make it + more obvious where they originate from + 2026-05-05 Dirk Eddelbuettel * DESCRIPTION (Version, Date): Roll micro version and date diff --git a/R/RcppLdpath.R b/R/RcppLdpath.R index d8acb323e..112f92515 100644 --- a/R/RcppLdpath.R +++ b/R/RcppLdpath.R @@ -69,13 +69,13 @@ RcppCxxFlags <- function(cxx0x=FALSE) { CxxFlags <- function(cxx0x=FALSE) { # #nocov start #.Deprecated(msg=paste("This function is now deprecated as R uses minimally", # "viable compilers om all platforme.")) - message("'CxxFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'.") + message("'Rcpp:::CxxFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'.") cat(RcppCxxFlags(cxx0x=cxx0x)) # #nocov end } ## LdFlags defaults to static linking on the non-Linux platforms Windows and OS X LdFlags <- function() { - message("'LdFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'.") + message("'Rcpp:::LdFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'.") cat(RcppLdFlags()) } @@ -94,6 +94,6 @@ RcppCxx0xFlags <- function() { # #nocov start } Cxx0xFlags <- function() { - message("'Cxx0xFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'.") + message("'Rcpp:::Cxx0xFlags' has not been needed since 2013 (!!) and may get removed in 2027. Please update your 'Makevars'.") cat(RcppCxx0xFlags()) # #nocov end }