diff options
author | Greg Clayton <gclayton@apple.com> | 2011-12-03 00:46:21 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2011-12-03 00:46:21 +0000 |
commit | c91d804af95f0162600aec0b2d3591d37e3a23f9 (patch) | |
tree | 88ad6e2cd8de4a3f248d9dbca6913b115bda3869 /lldb/source/Breakpoint/StoppointLocation.cpp | |
parent | 0f2a3607e020156a5c0d9e9b69202736e2ca9296 (diff) | |
download | bcm5719-llvm-c91d804af95f0162600aec0b2d3591d37e3a23f9.tar.gz bcm5719-llvm-c91d804af95f0162600aec0b2d3591d37e3a23f9.zip |
Fixed some extra warnings that show up with the new clang.
llvm-svn: 145735
Diffstat (limited to 'lldb/source/Breakpoint/StoppointLocation.cpp')
-rw-r--r-- | lldb/source/Breakpoint/StoppointLocation.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/source/Breakpoint/StoppointLocation.cpp b/lldb/source/Breakpoint/StoppointLocation.cpp index 5613f90619c..092caa5a932 100644 --- a/lldb/source/Breakpoint/StoppointLocation.cpp +++ b/lldb/source/Breakpoint/StoppointLocation.cpp @@ -30,12 +30,12 @@ StoppointLocation::StoppointLocation (break_id_t bid, addr_t addr, bool hardware { } -StoppointLocation::StoppointLocation (break_id_t bid, addr_t addr, size_t size, bool hardware) : +StoppointLocation::StoppointLocation (break_id_t bid, addr_t addr, uint32_t byte_size, bool hardware) : m_loc_id(bid), m_addr(addr), m_hw_preferred(hardware), m_hw_index(LLDB_INVALID_INDEX32), - m_byte_size(size), + m_byte_size(byte_size), m_hit_count(0) { } |