summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-09-14 10:29:33 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-09-14 10:30:16 +0200
commite900975255452b70f7474b78050b9c6342912cfe (patch)
treee92e92f804a9cc1c363dad61408e8880741ee961 /test
parentc077f0f904cce505e15543b855b4330ca547b53d (diff)
remove some useless casts
Diffstat (limited to 'test')
-rw-r--r--test/bitmask.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/bitmask.cpp b/test/bitmask.cpp
index dd5f2759..63fc9d15 100644
--- a/test/bitmask.cpp
+++ b/test/bitmask.cpp
@@ -34,7 +34,7 @@ const unsigned char data_door_close[] = {
{
auto time0 = clock.now();
for (int i = 0; i < cycles; i++)
- (void)anim_atlas::make_bitmask_(img, bitmask);
+ anim_atlas::make_bitmask_(img, bitmask);
std::chrono::duration<double, std::milli> time = clock.now() - time0;
fm_log("[BENCH] bitmask %d/%d took %.1f ms", i, runs, time.count());