-
-
Notifications
You must be signed in to change notification settings - Fork 219
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
1d9a549
First step of simplifying compiler checks
eddelbuettel f195660
Do not rely on __has_feature() for g++
eddelbuettel 2665b4d
Expand macos matrix to macos-13, simplify via r-ci with bootstrap
eddelbuettel 39f3c42
No longer provide fallback for unordered_{set,map} which are given
eddelbuettel d2c859a
Further cleanup
eddelbuettel d4870af
Reduced compiler.h to about a page of mostly defines and includes
eddelbuettel 714c483
Additional simplification, and typo fix
eddelbuettel 8809c39
Remove HAS_STATIC_ASSERT define and simplify at its sole use
eddelbuettel e1150dc
Reflect code review comments
eddelbuettel 12c29ee
Following rebase roll micro release and date, update ChangeLog
eddelbuettel fa5d1f1
Remove remaining stray HAS_CXX0X_INITIALIZER_LIST
eddelbuettel File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,19 @@ | ||
2025-03-15 Dirk Eddelbuettel <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* DESCRIPTION (Version, Date): Roll micro version and date | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff 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 = "[email protected]", | ||
comment = c(ORCID = "0000-0001-6419-907X")), | ||
person("Romain", "Francois", role = "aut", | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.