mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-27 14:24:40 +00:00
InstrProf: Move constructor to the header
Fixes 80-column violation at the same time. <rdar://problem/15950346> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@204516 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -161,7 +161,8 @@ private:
|
||||
RawInstrProfReader &operator=(const TextInstrProfReader &)
|
||||
LLVM_DELETED_FUNCTION;
|
||||
public:
|
||||
RawInstrProfReader(std::unique_ptr<MemoryBuffer> DataBuffer);
|
||||
RawInstrProfReader(std::unique_ptr<MemoryBuffer> DataBuffer)
|
||||
: DataBuffer(std::move(DataBuffer)) { }
|
||||
|
||||
static bool hasFormat(const MemoryBuffer &DataBuffer);
|
||||
error_code readHeader() override;
|
||||
|
Reference in New Issue
Block a user