ProfileData: Fix copy-paste type in RawInstrProfReader

These deleted definitions had the wrong types.

Patch by Alex L!

llvm-svn: 211199
This commit is contained in:
Justin Bogner 2014-06-18 18:20:44 +00:00
parent 8c89973462
commit 989574ca99
1 changed files with 2 additions and 2 deletions

View File

@ -168,8 +168,8 @@ private:
const char *NamesStart; const char *NamesStart;
const char *ProfileEnd; const char *ProfileEnd;
RawInstrProfReader(const TextInstrProfReader &) LLVM_DELETED_FUNCTION; RawInstrProfReader(const RawInstrProfReader &) LLVM_DELETED_FUNCTION;
RawInstrProfReader &operator=(const TextInstrProfReader &) RawInstrProfReader &operator=(const RawInstrProfReader &)
LLVM_DELETED_FUNCTION; LLVM_DELETED_FUNCTION;
public: public:
RawInstrProfReader(std::unique_ptr<MemoryBuffer> DataBuffer) RawInstrProfReader(std::unique_ptr<MemoryBuffer> DataBuffer)