[Lldb-commits] [PATCH] D57272: Remove unimplemented function
Phabricator via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Jan 28 11:38:37 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rLLDB352417: Remove unimplemented function (authored by adrian, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D57272?vs=183669&id=183926#toc
Repository:
rLLDB LLDB
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D57272/new/
https://reviews.llvm.org/D57272
Files:
source/Symbol/Type.cpp
Index: source/Symbol/Type.cpp
===================================================================
--- source/Symbol/Type.cpp
+++ source/Symbol/Type.cpp
@@ -147,12 +147,6 @@
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;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D57272.183926.patch
Type: text/x-patch
Size: 575 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20190128/03c50113/attachment.bin>
More information about the lldb-commits
mailing list