summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2019-09-01 20:42:04 +0200
committerMurray Cumming <murrayc@murrayc.com>2019-09-01 20:42:04 +0200
commitb2559b72ac42a90e5a1f4ee78a038d1552fc8888 (patch)
tree3c4b618f0f7d1166bbbe03da942eabd6cd3e42ca
parent959beb1cefcb4283bf124223e32f5b6247d2ceb3 (diff)
downloadsigc++-b2559b72ac42a90e5a1f4ee78a038d1552fc8888.tar.gz
tests: Remove an unnecessary semicolon
-rw-r--r--tests/benchmark.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/benchmark.cc b/tests/benchmark.cc
index 19aa9dd..b640d3b 100644
--- a/tests/benchmark.cc
+++ b/tests/benchmark.cc
@@ -72,7 +72,7 @@ void test_connected_multiple_signal_emit()
emitter.connect(mem_fun(foobar5, &foo::bar));
std::cout << "elapsed time for " << COUNT << " emissions (5 slots):" << std::endl;
- boost::timer::auto_cpu_timer timer;;
+ boost::timer::auto_cpu_timer timer;
for (int i=0; i < COUNT; ++i)
emitter(i);