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
This commit is contained in:
Zachary Turner
2015-01-09 20:15:21 +00:00
parent 225cc30afe
commit 898e10e4d3

View File

@@ -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,