Skip to content

Commit 62a0049

Browse files
committed
[llvm-exegesis] Fix -Wc++98-compat-extra-semi in BenchmarkRunner.cpp (NFC)
/data/llvm-project/llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp:66:2: error: extra ';' outside of a function is incompatible with C++98 [-Werror,-W c++98-compat-extra-semi] }; ^ 1 error generated.
1 parent d228059 commit 62a0049

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/tools/llvm-exegesis/lib/BenchmarkRunner.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ BenchmarkRunner::FunctionExecutor::runAndSample(const char *Counters) const {
6363
accumulateCounterValues(ValueOrError.get(), &CounterValues);
6464
}
6565
return CounterValues;
66-
};
66+
}
6767

6868
namespace {
6969
class FunctionExecutorImpl : public BenchmarkRunner::FunctionExecutor {

0 commit comments

Comments
 (0)