Remove unnecessary semicolon to silence -Wpedantic warning. NFCI.

llvm-svn: 341555
This commit is contained in:
Simon Pilgrim 2018-09-06 15:15:28 +00:00
parent 7f270fcf0a
commit 6088e85177
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ Error BlockIndexer::visit(CustomEventRecord &R) {
Error BlockIndexer::visit(CallArgRecord &R) {
CurrentBlock.Records.push_back(&R);
return Error::success();
};
}
Error BlockIndexer::visit(PIDRecord &R) {
CurrentBlock.ProcessID = R.pid();