migrate GHA to boost-ci#62
Merged
Merged
Conversation
The move constructor and move assignment operator used noexcept( std::is_nothrow_move_assignable< super_t >::value ) on = default declarations. C++17+ requires the explicit noexcept spec to match the implicit one computed from all subobjects (including members like q_). When the vector allocator's propagation/is_always_equal traits cause the implicit spec to differ, compilers reject it. Fix by removing the noexcept clause entirely; the compiler deduces the correct exception specification automatically.
cfb5266 to
2909e87
Compare
…-library cmake config Add test/cmake_test/CMakeLists.txt (new unified folder the CI checks first) with BOOST_CI_INSTALL_TEST branching, replacing the old cmake_install_test fallback. Also update cmake_install_test for backward compatibility. Root cause: b2 install calls boost-install.boost-install with empty library list for header-only libs lacking the 'install' option. BoostConfig.cmake is generated unconditionally, but per-library boost_heap-config.cmake is skipped. So find_package(Boost CONFIG REQUIRED COMPONENTS heap) fails because boost_find_component cannot find the per-library config. Fix: Use find_package(Boost CONFIG QUIET COMPONENTS heap) first. If Boost::heap target wasn't created (B2 install case), create it manually as INTERFACE IMPORTED using include dirs from Boost::headers.
2909e87 to
8f727c6
Compare
…n this_iterator reaches end()
89238e0 to
c6b58c5
Compare
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.
No description provided.