mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-11 21:57:55 +00:00
[PM] Fix a moderately scary typo in the deleted copy constructor
I noticed when adding move semantics to LoopInfo. Hopefully not relevant, but still scary. =] git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@226556 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
94a37a364e
commit
934e884ae7
@ -497,7 +497,7 @@ class LoopInfoBase {
|
||||
friend class LoopInfo;
|
||||
|
||||
void operator=(const LoopInfoBase &) LLVM_DELETED_FUNCTION;
|
||||
LoopInfoBase(const LoopInfo &) LLVM_DELETED_FUNCTION;
|
||||
LoopInfoBase(const LoopInfoBase &) LLVM_DELETED_FUNCTION;
|
||||
public:
|
||||
LoopInfoBase() { }
|
||||
~LoopInfoBase() { releaseMemory(); }
|
||||
|
Loading…
Reference in New Issue
Block a user