aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-05-29 17:31:45 +0200
committerBenoit Germain <benoit.germain@ubisoft.com>2024-05-29 17:31:45 +0200
commita156aaeb07fada043b308409dcffcae1726eec0b (patch)
treef15a5d60cda30607260d896598ea33f8619af53a /tests
parentd47758d58d532a9716ad4fd85cc806704df13735 (diff)
downloadlanes-a156aaeb07fada043b308409dcffcae1726eec0b.tar.gz
lanes-a156aaeb07fada043b308409dcffcae1726eec0b.tar.bz2
lanes-a156aaeb07fada043b308409dcffcae1726eec0b.zip
Fix clang-tidy issues (most notably Microsoft-specific explicit constructor calls)
Diffstat (limited to 'tests')
-rw-r--r--tests/keeper.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/keeper.lua b/tests/keeper.lua
index e485018..e758b54 100644
--- a/tests/keeper.lua
+++ b/tests/keeper.lua
@@ -3,7 +3,7 @@
3-- 3--
4-- Test program for Lua Lanes 4-- Test program for Lua Lanes
5-- 5--
6 6-- TODO: there is a random crash when nb_keepers > 1. Will have to investigate
7local lanes = require "lanes".configure{ with_timers = false, nb_keepers = 1, keepers_gc_threshold = 500} 7local lanes = require "lanes".configure{ with_timers = false, nb_keepers = 1, keepers_gc_threshold = 500}
8 8
9do 9do