From: Justin Bogner Date: Wed, 18 Jun 2014 18:20:44 +0000 (+0000) Subject: ProfileData: Fix copy-paste type in RawInstrProfReader X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=8252de6ddc3fe36bb7d026587c48b9ac073e4097;p=oota-llvm.git ProfileData: Fix copy-paste type in RawInstrProfReader These deleted definitions had the wrong types. Patch by Alex L! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211199 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/ProfileData/InstrProfReader.h b/include/llvm/ProfileData/InstrProfReader.h index c5005a1d11e..7a5a71dc6a3 100644 --- a/include/llvm/ProfileData/InstrProfReader.h +++ b/include/llvm/ProfileData/InstrProfReader.h @@ -168,8 +168,8 @@ private: const char *NamesStart; const char *ProfileEnd; - RawInstrProfReader(const TextInstrProfReader &) LLVM_DELETED_FUNCTION; - RawInstrProfReader &operator=(const TextInstrProfReader &) + RawInstrProfReader(const RawInstrProfReader &) LLVM_DELETED_FUNCTION; + RawInstrProfReader &operator=(const RawInstrProfReader &) LLVM_DELETED_FUNCTION; public: RawInstrProfReader(std::unique_ptr DataBuffer)