mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-06 06:33:24 +00:00
Remove more LLVM_DELETED_FUNCTIONs from destructors to fix -std=c++11 build on gcc 4.7.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164880 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
aa7e47416a
commit
aa64c18280
@ -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:
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user