[Lldb-commits] [lldb] r145212 - /lldb/trunk/include/lldb/Core/MappedHash.h
Greg Clayton
gclayton at apple.com
Sun Nov 27 16:42:24 PST 2011
Author: gclayton
Date: Sun Nov 27 18:42:24 2011
New Revision: 145212
URL: http://llvm.org/viewvc/llvm-project?rev=145212&view=rev
Log:
Remove incorrect return type from SetHeaderDataByteSize accessor (partial
patch from Dawn).
Modified:
lldb/trunk/include/lldb/Core/MappedHash.h
Modified: lldb/trunk/include/lldb/Core/MappedHash.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/MappedHash.h?rev=145212&r1=145211&r2=145212&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/MappedHash.h (original)
+++ lldb/trunk/include/lldb/Core/MappedHash.h Sun Nov 27 18:42:24 2011
@@ -98,7 +98,7 @@
virtual size_t
GetByteSize (const HeaderData &header_data) = 0;
- size_t
+ void
SetHeaderDataByteSize (uint32_t header_data_byte_size)
{
header_data_len = header_data_byte_size;
More information about the lldb-commits
mailing list