Remove more LLVM_DELETED_FUNCTIONs from destructors to fix -std=c++11 build on gcc 4.7.

llvm-svn: 164880
This commit is contained in:
Craig Topper 2012-09-29 02:25:34 +00:00
parent 060cfdc8e9
commit 913b876329
1 changed files with 3 additions and 3 deletions

View File

@ -79,7 +79,7 @@ public:
};
private:
~OverflowingBinaryOperator() LLVM_DELETED_FUNCTION;
~OverflowingBinaryOperator(); // DO NOT IMPLEMENT
friend class BinaryOperator;
friend class ConstantExpr;
@ -133,7 +133,7 @@ public:
};
private:
~PossiblyExactOperator() LLVM_DELETED_FUNCTION;
~PossiblyExactOperator(); // DO NOT IMPLEMENT
friend class BinaryOperator;
friend class ConstantExpr;
@ -170,7 +170,7 @@ public:
/// information about relaxed accuracy requirements attached to them.
class FPMathOperator : public Operator {
private:
~FPMathOperator() LLVM_DELETED_FUNCTION;
~FPMathOperator(); // DO NOT IMPLEMENT
public: