Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Header cleanup with C++11 as a baseline#1364

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
eddelbuettel merged 11 commits intomasterfromfeature/header_cleanup
Mar 18, 2025
Merged
Show file tree
Hide file tree
Changes from1 commit
Commits
Show all changes
11 commits
Select commitHold shift + click to select a range
1d9a549
First step of simplifying compiler checks
eddelbuettelMar 14, 2025
f195660
Do not rely on __has_feature() for g++
eddelbuettelMar 14, 2025
2665b4d
Expand macos matrix to macos-13, simplify via r-ci with bootstrap
eddelbuettelMar 14, 2025
39f3c42
No longer provide fallback for unordered_{set,map} which are given
eddelbuettelMar 14, 2025
d2c859a
Further cleanup
eddelbuettelMar 14, 2025
d4870af
Reduced compiler.h to about a page of mostly defines and includes
eddelbuettelMar 14, 2025
714c483
Additional simplification, and typo fix
eddelbuettelMar 14, 2025
8809c39
Remove HAS_STATIC_ASSERT define and simplify at its sole use
eddelbuettelMar 14, 2025
e1150dc
Reflect code review comments
eddelbuettelMar 14, 2025
12c29ee
Following rebase roll micro release and date, update ChangeLog
eddelbuettelMar 16, 2025
fa5d1f1
Remove remaining stray HAS_CXX0X_INITIALIZER_LIST
eddelbuettelMar 16, 2025
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
PrevPrevious commit
NextNext commit
Following rebase roll micro release and date, update ChangeLog
  • Loading branch information
@eddelbuettel
eddelbuettel committedMar 16, 2025
commit12c29eee6fcaf3bdd555067824aaa94a2dd3be7b
16 changes: 16 additions & 0 deletionsChangeLog
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
2025-03-15 Dirk Eddelbuettel <edd@debian.org>

* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem

* inst/include/Rcpp/platform/compiler.h: Simplified and shortened
establishing C++11 as baseline; further PRs to complete this
* inst/include/Rcpp/String.h: Unconditionally use std::hash with C++11
* inst/include/Rcpp/wrap.h: Unconditionally use static_assert
* inst/include/Rcpp/sugar/functions/sapply.h: Use std::result_of
(with C++11 or C++14) or std::invoke_result (C++17 or later)
* inst/include/Rcpp/sugar/functions/table.h: Use std::map
* inst/include/Rcpp/sugar/sets.h: Use std::unordered_{set,map}
* man/evalCpp.Rd: Update example
* src/api.cpp: Simplify rcpp_capabilities assignment

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

* DESCRIPTION (Version, Date): Roll micro version and date
Expand Down
4 changes: 2 additions & 2 deletionsDESCRIPTION
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
Package: Rcpp
Title: Seamless R and C++ Integration
Version: 1.0.14.6
Date: 2025-03-13
Version: 1.0.14.7
Date: 2025-03-15
Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "edd@debian.org",
comment = c(ORCID = "0000-0001-6419-907X")),
person("Romain", "Francois", role = "aut",
Expand Down
4 changes: 2 additions & 2 deletionsinst/include/Rcpp/config.h
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -30,7 +30,7 @@
#define RCPP_VERSION_STRING "1.0.14"

// the current source snapshot (using four components, if a fifth is used in DESCRIPTION we ignore it)
#define RCPP_DEV_VERSION RcppDevVersion(1,0,14,6)
#define RCPP_DEV_VERSION_STRING "1.0.14.6"
#define RCPP_DEV_VERSION RcppDevVersion(1,0,14,7)
#define RCPP_DEV_VERSION_STRING "1.0.14.7"

#endif

[8]ページ先頭

©2009-2025 Movatter.jp