mirror of
https://github.com/intel/llvm.git
synced 2026-01-22 15:41:35 +08:00
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user