Skip to content

Commit

Permalink
Change int32_t to uint32_t to fix warnings.
Browse files Browse the repository at this point in the history
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
  • Loading branch information
Zachary Turner committed Jan 9, 2015
1 parent 225cc30 commit 898e10e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lldb/source/Commands/CommandObjectThread.cpp
Expand Up @@ -454,7 +454,7 @@ class CommandObjectThreadStepWithTypeAndScope : public CommandObjectParsed
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,
Expand Down

0 comments on commit 898e10e

Please sign in to comment.