test/cfg/boost.cpp: added missing include for `BOOST_SCOPED_ENUM_DECL…#6817
Merged
firewave merged 1 commit intocppcheck-opensource:2.15.xfrom Sep 21, 2024
Merged
Conversation
…ARE_*` (cppcheck-opensource#6808) Fixes potential syntax checking in cfg tests on `macos-12` as some runners might now have Boost installed: ``` Boost found and working, checking syntax with g++ now. /Users/runner/work/cppcheck/cppcheck/test/cfg/boost.cpp:90:49: error: expected ';' after expression BOOST_SCOPED_ENUM_DECLARE_BEGIN(future_errc) { ^ ; /Users/runner/work/cppcheck/cppcheck/test/cfg/boost.cpp:90:37: error: use of undeclared identifier 'future_errc' BOOST_SCOPED_ENUM_DECLARE_BEGIN(future_errc) { ^ /Users/runner/work/cppcheck/cppcheck/test/cfg/boost.cpp:92:9: error: use of undeclared identifier 'no_state' no_state ^ /Users/runner/work/cppcheck/cppcheck/test/cfg/boost.cpp:94:47: error: expected ';' after expression BOOST_SCOPED_ENUM_DECLARE_END(future_errc) ^ ; /Users/runner/work/cppcheck/cppcheck/test/cfg/boost.cpp:94:35: error: use of undeclared identifier 'future_errc' BOOST_SCOPED_ENUM_DECLARE_END(future_errc) ^ 5 errors generated. make: *** [checkcfg] Error 1 ``` (cherry picked from commit 3199102)
Collaborator
Author
|
Backport of #6808. |
Collaborator
Author
|
The build failure is fixed by #6816 which is already merged. As I currently cannot remember how to rebase the branch based not on |
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.
…ARE_*` (#6808)
Fixes potential syntax checking in cfg tests on
macos-12as some runners might now have Boost installed:(cherry picked from commit 3199102)