[Lldb-commits] [lldb] r352417 - Remove unimplemented function
Adrian Prantl via lldb-commits
lldb-commits at lists.llvm.org
Mon Jan 28 11:38:08 PST 2019
Author: adrian
Date: Mon Jan 28 11:38:08 2019
New Revision: 352417
URL: http://llvm.org/viewvc/llvm-project?rev=352417&view=rev
Log:
Remove unimplemented function
Looks like this was an unintended sideeffect of r124250.
Differential Revision: https://reviews.llvm.org/D57272
Modified:
lldb/trunk/source/Symbol/Type.cpp
Modified: lldb/trunk/source/Symbol/Type.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Symbol/Type.cpp?rev=352417&r1=352416&r2=352417&view=diff
==============================================================================
--- lldb/trunk/source/Symbol/Type.cpp (original)
+++ lldb/trunk/source/Symbol/Type.cpp Mon Jan 28 11:38:08 2019
@@ -147,12 +147,6 @@ Type::Type(const Type &rhs)
m_byte_size_has_value(rhs.m_byte_size_has_value), m_decl(rhs.m_decl),
m_compiler_type(rhs.m_compiler_type), m_flags(rhs.m_flags) {}
-const Type &Type::operator=(const Type &rhs) {
- if (this != &rhs) {
- }
- return *this;
-}
-
void Type::GetDescription(Stream *s, lldb::DescriptionLevel level,
bool show_name) {
*s << "id = " << (const UserID &)*this;
More information about the lldb-commits
mailing list