diff options
author | Zachary Turner <zturner@google.com> | 2015-01-09 20:15:21 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2015-01-09 20:15:21 +0000 |
commit | 898e10e4d3602511db1b5a9add81b2356a6221d2 (patch) | |
tree | c2065eed033a0ccc6c6d4d616ac712a92a077898 /lldb/source/Commands/CommandObjectThread.cpp | |
parent | 225cc30afe18dd625f22519b6d4903ac4da08c3a (diff) | |
download | bcm5719-llvm-898e10e4d3602511db1b5a9add81b2356a6221d2.tar.gz bcm5719-llvm-898e10e4d3602511db1b5a9add81b2356a6221d2.zip |
Change int32_t to uint32_t to fix warnings.
Variable was being declared as signed, but treated as unsigned at
every point of use.
Patch by Dan Sinclair
Differential Revision: http://reviews.llvm.org/D6897
llvm-svn: 225540
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 cc97de263e5..bace4e58b4a 100644 --- a/lldb/source/Commands/CommandObjectThread.cpp +++ b/lldb/source/Commands/CommandObjectThread.cpp @@ -454,7 +454,7 @@ public: std::string m_avoid_regexp; std::string m_step_in_target; std::string m_class_name; - int32_t m_step_count; + uint32_t m_step_count; }; CommandObjectThreadStepWithTypeAndScope (CommandInterpreter &interpreter, |