Cannot have the base class destructor be private (or explicitly deleted); fixing the build bots.

llvm-svn: 205916
This commit is contained in:
Aaron Ballman 2014-04-09 17:55:04 +00:00
parent 3f993c1320
commit 91b079a9fc
1 changed files with 0 additions and 4 deletions

View File

@ -220,10 +220,6 @@ protected:
unsigned short Flags;
private:
// Note, this cannot be explicitly deleted due to initializers automatically
// referencing destructor declarations. However, it does not need to be
// defined because that reference does not require an definition.
~SExpr();
SExpr() = delete;
// SExpr objects must be created in an arena and cannot be deleted.