1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 20:51:52 +01:00

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 c01b469493
commit a6ef8c1281

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();