-
Notifications
You must be signed in to change notification settings - Fork 370
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
Updated to VERA++ 1.3.0 in Travis and changed files to comply with style checks #884
Conversation
443ac7f
to
26c8646
Compare
build.sh
Outdated
@@ -101,9 +101,15 @@ if [ "$xSTATIC_ANALYSIS" = "1" ] ; then | |||
echo "+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +" | |||
|
|||
echo "MSGBLD0010: Initializing VERA++ static code analysis." | |||
git clone https://github.com/verateam/vera.git |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Vera++ is actually hosted at bitbucket: http://bitbucket.org/verateam/vera . The GitHub version is a clone. Further, cloning from that repo will give you whatever version is at branch master latest. This is not version 1.3.0 (which was released 2015-01-22). The last commit on master is also not stable. You should use the sources from the 1.3.0 download page: https://bitbucket.org/verateam/vera/wiki/Installation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the contribution. All fine from my side.
@tammoippen I have made the changes you requested. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. 🎉
@hakonsbm The merged PR #858 changed some of the code of |
@janhahne No problem, I'll take care of it. |
In PR #691 all files were made compliant with style checks. However, because of a bug in VERA++ 1.2.1, a
#pragma omp for
directive is seen as a standard for loop. This was a problem in the fileconnection_manager.cpp
, and VERA++ was therefore kept ignored in the static code analysis. Because of this, some new style violations were introduced by other PRs.This PR