[1.0][benchmark] Update std::function syntax for current C++#314
Merged
lorentey merged 1 commit intoapple:release/1.0from Oct 3, 2023
Merged
[1.0][benchmark] Update std::function syntax for current C++#314lorentey merged 1 commit intoapple:release/1.0from
lorentey merged 1 commit intoapple:release/1.0from
Conversation
Member
Author
|
@swift-ci test |
Closed
cgrindel-self-hosted-renovate bot
referenced
this pull request
in cgrindel/rules_swift_package_manager
Oct 3, 2023
…v1.0.5 (#636) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [com_github_apple_swift_collections](https://togithub.com/apple/swift-collections) | http_archive | patch | `1.0.4` -> `1.0.5` | --- ### Release Notes <details> <summary>apple/swift-collections (com_github_apple_swift_collections)</summary> ### [`v1.0.5`](https://togithub.com/apple/swift-collections/releases/tag/1.0.5): Swift Collections 1.0.5 [Compare Source](https://togithub.com/apple/swift-collections/compare/1.0.4...1.0.5) This bugfix release improves compatibility with recent Swift versions, eliminating several compiler warnings on Swift 5.8 and 5.9. It contains no API-level changes. ##### What's Changed - build: add ARM64 to the architecture mappings for Windows by [@​compnerd](https://togithub.com/compnerd) in [https://github.com/apple/swift-collections/pull/265](https://togithub.com/apple/swift-collections/pull/265) - Fix deprecated UnsafeMutablePointer.assign(repeating:count) method by [@​FelixHerrmann](https://togithub.com/FelixHerrmann) in [https://github.com/apple/swift-collections/pull/268](https://togithub.com/apple/swift-collections/pull/268) - \[1.0]\[test] Fix typename shadowing warning in Swift 5.9 by [@​lorentey](https://togithub.com/lorentey) in [https://github.com/apple/swift-collections/pull/315](https://togithub.com/apple/swift-collections/pull/315) - \[1.0]\[benchmark] Update std::function syntax for current C++ by [@​lorentey](https://togithub.com/lorentey) in [https://github.com/apple/swift-collections/pull/314](https://togithub.com/apple/swift-collections/pull/314) ##### New Contributors - [@​FelixHerrmann](https://togithub.com/FelixHerrmann) made their first contribution in [https://github.com/apple/swift-collections/pull/268](https://togithub.com/apple/swift-collections/pull/268) **Full Changelog**: apple/swift-collections@1.0.4...1.0.5 Thank you to everyone who contributed to this release! </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMDAuMCIsInVwZGF0ZWRJblZlciI6IjM2LjEwMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9--> Co-authored-by: Self-hosted Renovate Bot <361546+cgrindel-self-hosted-renovate[bot]@users.noreply.github.enterprise.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
C++17 has removed
std::unary_function. Migrate to usingstd::function.(This may break our ability to build benchmarks with older clang/libc++ releases. That is fine.)
Checklist