-
Bug
-
Resolution: Done
-
Not Evaluated
-
Qt Creator 4.4.0
-
None
qt-creator-opensource-src-4.4.0/src/tools/iostool/iosdevicemanager.cpp:1225]: (style) Boolean result is used in bitwise operation. Clarify expression with parentheses.
Source code is
if ((c < '0' || c > '9') && (c < 'a' || c > 'f') && (c < 'A' | c > 'F')) {
Maybe better code
if ((c < '0' || c > '9') && (c < 'a' || c > 'f') && (c < 'A' || c > 'F')) {
For Gerrit Dashboard: QTCREATORBUG-18847 | ||||||
---|---|---|---|---|---|---|
# | Subject | Branch | Project | Status | CR | V |
211350,2 | iOS: Fix incorrect bitwise operator usage | master | qt-creator/qt-creator | Status: MERGED | +2 | 0 |