Skip to content
Snippets Groups Projects
Commit f470db1e authored by Orgad Shaneh's avatar Orgad Shaneh Committed by Orgad Shaneh
Browse files

ProjectExplorer: Add parentheses to clarify precedence


Change-Id: Ife6fc962ff8fbea6cf2020fa888269eefce2c4d4
Reviewed-by: default avatarDavid Schulz <david.schulz@digia.com>
parent 91fbf28e
No related branches found
No related tags found
No related merge requests found
......@@ -171,8 +171,8 @@ GDB 32bit | Api | Api | N/A | Win32
bool creatorIs64Bit = Utils::is64BitWindowsBinary(qApp->applicationFilePath());
if (!is64BitSystem
|| si == NoSpecialInterrupt
|| si == Win64Interrupt && creatorIs64Bit
|| si == Win32Interrupt && !creatorIs64Bit) {
|| (si == Win64Interrupt && creatorIs64Bit)
|| (si == Win32Interrupt && !creatorIs64Bit)) {
if (!DebugBreakProcess(inferior)) {
appendMsgCannotInterrupt(pid, tr("DebugBreakProcess failed:")
+ QLatin1Char(' ') + Utils::winErrorMessage(GetLastError()));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment