We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0ffd4d commit 95d048aCopy full SHA for 95d048a
cpp/common/src/codingstandards/cpp/Bitwise.qll
@@ -5,16 +5,6 @@
5
private import cpp as cpp
6
7
module Bitwise {
8
- /**
9
- * A binary bitwise assign operation, excluding += and -= on pointers, which seem to be erroneously
10
- * included.
11
- */
12
- class AssignBitwiseOperation extends cpp::AssignBitwiseOperation {
13
- AssignBitwiseOperation() {
14
- // exclude += and -= on pointers, which seem to be erroneously included
15
- // in the database schema
16
- not this instanceof cpp::AssignPointerAddExpr and
17
- not this instanceof cpp::AssignPointerSubExpr
18
- }
19
+ /** A binary bitwise assign operation. */
+ class AssignBitwiseOperation extends cpp::AssignBitwiseOperation { }
20
}
0 commit comments