[lldb] Delete dead, infinitely-recursive code (NFC)

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

llvm-svn: 277351
This commit is contained in:
Vedant Kumar 2016-08-01 16:37:42 +00:00
parent cbba4b2059
commit 431368a9e6
2 changed files with 0 additions and 12 deletions

View File

@ -31,17 +31,6 @@ CFData::CFData(const CFData& rhs) :
}
//----------------------------------------------------------------------
// CFData copy constructor
//----------------------------------------------------------------------
CFData&
CFData::operator=(const CFData& rhs)
{
*this = rhs;
return *this;
}
//----------------------------------------------------------------------
// Destructor
//----------------------------------------------------------------------

View File

@ -24,7 +24,6 @@ public:
//------------------------------------------------------------------
CFData(CFDataRef data = NULL);
CFData(const CFData& rhs);
CFData& operator=(const CFData& rhs);
virtual ~CFData();
CFDataRef Serialize(CFPropertyListRef plist, CFPropertyListFormat format);