From 6088e851773e82e612023a75f1a174e662a88254 Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Thu, 6 Sep 2018 15:15:28 +0000 Subject: [PATCH] Remove unnecessary semicolon to silence -Wpedantic warning. NFCI. llvm-svn: 341555 --- llvm/lib/XRay/BlockIndexer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/XRay/BlockIndexer.cpp b/llvm/lib/XRay/BlockIndexer.cpp index 4b76ad9ecdc7..4ea2ffbc3916 100644 --- a/llvm/lib/XRay/BlockIndexer.cpp +++ b/llvm/lib/XRay/BlockIndexer.cpp @@ -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();