summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@digia.com>2013-10-23 08:38:21 +0200
committerOrgad Shaneh <orgads@gmail.com>2013-10-23 09:39:13 +0200
commit03dbb665b781e0dd7d4e5228ebd71808745e90f3 (patch)
treeeaded02fb0aecb0fe70f7c322a722d846b502766 /src
parent719c87e5990f8b45f406fe2c3bd6309e6c1bcfc9 (diff)
downloadqt-creator-03dbb665b781e0dd7d4e5228ebd71808745e90f3.tar.gz
Fix build on windows in debuggerkitinformation.
Change-Id: I45137f08147d073f8c111c94a6303a90085183ef Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src')
-rw-r--r--src/plugins/debugger/debuggerkitinformation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/debugger/debuggerkitinformation.cpp b/src/plugins/debugger/debuggerkitinformation.cpp
index 667e61b07d..30ca4f2c23 100644
--- a/src/plugins/debugger/debuggerkitinformation.cpp
+++ b/src/plugins/debugger/debuggerkitinformation.cpp
@@ -206,7 +206,7 @@ static DebuggerItem::MatchLevel matchSingle(const Abi &debuggerAbi, const Abi &t
return DebuggerItem::DoesNotMatch;
}
- if (debuggerAbi.wordWidth() == 64 and targetAbi.wordWidth() == 32)
+ if (debuggerAbi.wordWidth() == 64 && targetAbi.wordWidth() == 32)
return DebuggerItem::MatchesSomewhat;
if (debuggerAbi.wordWidth() != 0 && debuggerAbi.wordWidth() != targetAbi.wordWidth())
return DebuggerItem::DoesNotMatch;