Remove unnecessary semicolon to silence -Wpedantic warning. NFCI.

llvm-svn: 341938
This commit is contained in:
Simon Pilgrim 2018-09-11 13:42:15 +00:00
parent 10454c4fd5
commit 008da027fc
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ Expected<Chunk> readChunk(StringRef &Stream) {
Stream = Stream.drop_front();
}
return std::move(C);
};
}
raw_ostream &operator<<(raw_ostream &OS, const Chunk &C) {
OS.write(C.ID.data(), C.ID.size());