Skip to content

Commit

Permalink
Remove unimplemented function
Browse files Browse the repository at this point in the history
Looks like this was an unintended sideeffect of r124250.

Differential Revision: https://reviews.llvm.org/D57272

llvm-svn: 352417
  • Loading branch information
adrian-prantl committed Jan 28, 2019
1 parent 8e1d657 commit c56779b
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions lldb/source/Symbol/Type.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit c56779b

Please sign in to comment.