diff options
author | Zachary Turner <zturner@google.com> | 2014-07-16 20:28:24 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2014-07-16 20:28:24 +0000 |
commit | 40411165791426831f80c4c0d7ab861653ec4a7f (patch) | |
tree | 2fdd635043acd7d5569b5a1ad07f32fa4d85f2c4 /lldb/source/Commands/CommandObjectThread.cpp | |
parent | 173361e7e04b3ba0f88b6960d8d9b959c447ccff (diff) | |
download | bcm5719-llvm-40411165791426831f80c4c0d7ab861653ec4a7f.tar.gz bcm5719-llvm-40411165791426831f80c4c0d7ab861653ec4a7f.zip |
Fix some warnings in the Windows build.
llvm-svn: 213194
Diffstat (limited to 'lldb/source/Commands/CommandObjectThread.cpp')
-rw-r--r-- | lldb/source/Commands/CommandObjectThread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/source/Commands/CommandObjectThread.cpp b/lldb/source/Commands/CommandObjectThread.cpp index 86c99b5e6d9..c58e9e83503 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -616,7 +616,7 @@ protected: if (m_options.m_step_count > 1) { - if (new_plan_sp->SetIterationCount(m_options.m_step_count) != m_options.m_step_count) + if (new_plan_sp->SetIterationCount(m_options.m_step_count)) { result.AppendWarning ("step operation does not support iteration count."); } |