-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
test/cfg/boost.cpp: added missing include for BOOST_SCOPED_ENUM_DECLARE_*
#6808
Merged
Conversation
This file contains 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
As this was a transitive include I assume newer Boost versions have removed this in some context leading to the failure. |
firewave
added a commit
to firewave/cppcheck
that referenced
this pull request
Sep 21, 2024
…ARE_*` (danmar#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)
firewave
added a commit
that referenced
this pull request
Sep 21, 2024
#6817) …ARE_*` (#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)
ludviggunne
pushed a commit
to ludviggunne/cppcheck
that referenced
this pull request
Oct 19, 2024
…ARE_*` (danmar#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 ```
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.
Fixes potential syntax checking in cfg tests on
macos-12
as some runners might now have Boost installed: