Header patch, virtual dtor patch and missed UUID patch from Kirk Beitz.

llvm-svn: 124931
This commit is contained in:
Greg Clayton
2011-02-05 02:56:16 +00:00
parent ceb4671ddd
commit 95e314260e
23 changed files with 20 additions and 43 deletions

View File

@@ -186,7 +186,7 @@ lldb_private::operator == (const lldb_private::UUID &lhs, const lldb_private::UU
bool
lldb_private::operator != (const lldb_private::UUID &lhs, const lldb_private::UUID &rhs)
{
return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), UUID::GetByteSize()) != 0;
return ::memcmp (lhs.GetBytes(), rhs.GetBytes(), lldb_private::UUID::GetByteSize()) != 0;
}
bool