-
Notifications
You must be signed in to change notification settings - Fork 59
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
Fix #789: Reduce False positives on A7-1-2 (VariableMissingConstexpr.ql) #794
Open
rak3-sh
wants to merge
5
commits into
github:main
Choose a base branch
from
rak3-sh:rp/fix-789
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 3 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
- `A7-1-2` - `VariableMissingConstexpr.ql`: | ||
- Fixes #789. Doesn't alert on non-static member variables and compiler generated variables of range based for-loops. | ||
- Do not report on member variables if the class has un-instantiated member function(s). | ||
- Check a call's qualifier as well whether it can be compile time evaluated or not. |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -51,9 +51,9 @@ class MemberConstExpr { | |
MemberConstExpr(int p3) : m3(p3) {} | ||
|
||
private: | ||
int m1; // COMPLIANT - is not always zero initialized | ||
static const int m2 = 0; // NON_COMPLIANT | ||
int m3 = 0; // COMPLIANT - can be set by constructor | ||
int m1; // COMPLIANT - is not always zero initialized | ||
int m2 = 0; // NON_COMPLIANT | ||
int m3 = 0; // COMPLIANT - can be set by constructor | ||
}; | ||
|
||
int h1(int x, int y) { // NON_COMPLIANT | ||
|
@@ -127,7 +127,7 @@ class MissingConstexprClass { | |
MissingConstexprClass(int i) = delete; // NON_COMPLIANT | ||
MissingConstexprClass(int i, LiteralClass lc) {} // NON_COMPLIANT | ||
private: | ||
int m1 = 0; // COMPLIANT - non-static member variable | ||
int m1 = 0; | ||
}; | ||
|
||
class VirtualBaseClass {}; | ||
|
@@ -138,9 +138,9 @@ class DerivedClass : public virtual VirtualBaseClass { | |
DerivedClass(int i) = delete; // COMPLIANT | ||
DerivedClass(int i, LiteralClass lc) {} // COMPLIANT | ||
private: | ||
static int m1; // NON_COMPLAINT - static member variable can be constexpr | ||
int m1 = 0; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Needs "NON_COMPLIANT" marker |
||
}; | ||
int DerivedClass::m1 = 0; | ||
|
||
class NotAllMembersInitializedClass { | ||
public: | ||
NotAllMembersInitializedClass() = default; // COMPLIANT | ||
|
@@ -275,14 +275,3 @@ template <typename T> T *init() { | |
} | ||
|
||
void test_template_instantiation() { int *t = init<int>(); } | ||
|
||
#include <memory> | ||
#include <vector> | ||
void a_function() { | ||
auto origin = std::vector<int>{1, 2, 3, 4, 5, 6, 7, 8, 9}; | ||
auto values = std::vector<std::unique_ptr<int>>{}; | ||
for (auto &value : | ||
origin) { // Sometimes, CodeQL reports "value" should be constexpr | ||
values.emplace_back(std::make_unique<int>(value)); | ||
} | ||
} |
Oops, something went wrong.
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.
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.
Needs "NON_COMPLIANT" marker