Files
codeql/cpp/ql/test/query-tests/Likely Bugs/AmbiguouslySignedBitField/AmbiguouslySignedBitField.expected
Jonas Jensen 34a5368101 C++: Ignore templates in AmbiguouslySignedBitField
If it's possible that the type is not fully resolved, it's better to
avoid giving an alert.

This fixes a FP in https://github.com/heremaps/flatdata.
2019-09-19 14:21:53 +02:00

6 lines
828 B
Plaintext

| test.cpp:12:6:12:11 | nosign | Bit field nosign of type int should have explicitly unsigned integral, explicitly signed integral, or enumeration type. |
| test.cpp:19:7:19:16 | nosignchar | Bit field nosignchar of type char should have explicitly unsigned integral, explicitly signed integral, or enumeration type. |
| test.cpp:20:8:20:18 | nosignshort | Bit field nosignshort of type short should have explicitly unsigned integral, explicitly signed integral, or enumeration type. |
| test.cpp:21:18:21:30 | nosigntypedef | Bit field nosigntypedef of type int should have explicitly unsigned integral, explicitly signed integral, or enumeration type. |
| test.cpp:23:15:23:25 | nosignconst | Bit field nosignconst of type const int should have explicitly unsigned integral, explicitly signed integral, or enumeration type. |