From: Chandler Carruth Date: Tue, 20 Jan 2015 10:20:52 +0000 (+0000) Subject: [PM] Fix a moderately scary typo in the deleted copy constructor X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=934e884ae71f06cd1e6e623ad9c03e4dc7323720;p=oota-llvm.git [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 --- diff --git a/include/llvm/Analysis/LoopInfo.h b/include/llvm/Analysis/LoopInfo.h index 0c2b0fe020a..18e572a1904 100644 --- a/include/llvm/Analysis/LoopInfo.h +++ b/include/llvm/Analysis/LoopInfo.h @@ -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(); }