Skip to content

Commit 6088e85

Browse files
committed
Remove unnecessary semicolon to silence -Wpedantic warning. NFCI.
llvm-svn: 341555
1 parent 7f270fc commit 6088e85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/XRay/BlockIndexer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Error BlockIndexer::visit(CustomEventRecord &R) {
5454
Error BlockIndexer::visit(CallArgRecord &R) {
5555
CurrentBlock.Records.push_back(&R);
5656
return Error::success();
57-
};
57+
}
5858

5959
Error BlockIndexer::visit(PIDRecord &R) {
6060
CurrentBlock.ProcessID = R.pid();

0 commit comments

Comments
 (0)