forked from OSchip/llvm-project
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:
parent
8c89973462
commit
989574ca99
|
@ -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<MemoryBuffer> DataBuffer)
|
||||
|
|
Loading…
Reference in New Issue