diff options
author | Tobias Hunger <tobias.hunger@nokia.com> | 2011-11-23 16:46:16 +0000 |
---|---|---|
committer | Tobias Hunger <tobias.hunger@nokia.com> | 2011-11-24 10:51:54 +0100 |
commit | e913ef737b4872a115f2d88033a26aeca9346ae8 (patch) | |
tree | c687f9cfeea05fb657b8f479400105f704bee1ef /src/plugins/debugger/breakhandler.cpp | |
parent | 0ce9fa2c16073f85ed17890088f6e40f523ce928 (diff) | |
download | qt-creator-e913ef737b4872a115f2d88033a26aeca9346ae8.tar.gz |
Fix warning
Change-Id: I1b68ad0c97b630b95a6c47e6d0a0709c2a0872f6
Reviewed-by: Tobias Hunger <tobias.hunger@nokia.com>
Diffstat (limited to 'src/plugins/debugger/breakhandler.cpp')
-rw-r--r-- | src/plugins/debugger/breakhandler.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/debugger/breakhandler.cpp b/src/plugins/debugger/breakhandler.cpp index bca2bbcbf6..1de7273df1 100644 --- a/src/plugins/debugger/breakhandler.cpp +++ b/src/plugins/debugger/breakhandler.cpp @@ -1325,6 +1325,7 @@ void BreakHandler::setResponse(BreakpointModelId id, void BreakHandler::changeBreakpointData(BreakpointModelId id, const BreakpointParameters &data, BreakpointParts parts) { + Q_UNUSED(parts); Iterator it = m_storage.find(id); BREAK_ASSERT(it != m_storage.end(), return); if (data == it->data) |