diff options
author | Benoit Germain <benoit.germain@ubisoft.com> | 2024-05-29 17:31:45 +0200 |
---|---|---|
committer | Benoit Germain <benoit.germain@ubisoft.com> | 2024-05-29 17:31:45 +0200 |
commit | a156aaeb07fada043b308409dcffcae1726eec0b (patch) | |
tree | f15a5d60cda30607260d896598ea33f8619af53a /tests | |
parent | d47758d58d532a9716ad4fd85cc806704df13735 (diff) | |
download | lanes-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.lua | 2 |
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 | |
7 | local lanes = require "lanes".configure{ with_timers = false, nb_keepers = 1, keepers_gc_threshold = 500} | 7 | local lanes = require "lanes".configure{ with_timers = false, nb_keepers = 1, keepers_gc_threshold = 500} |
8 | 8 | ||
9 | do | 9 | do |