diff --git a/CMakeLists.txt b/CMakeLists.txt index 0f37e2f..6fac9ce 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.25) -project(lilfbtf5 VERSION 0.1.10) +project(lilfbtf5 VERSION 0.1.11) option(ENABLE_ADDRSAN "Enable the address sanitizer" OFF) option(ENABLE_UBSAN "Enable the ub sanitizer" OFF) diff --git a/tests/src/tests4.cpp b/tests/src/tests4.cpp index a09f0e9..21e33ed 100644 --- a/tests/src/tests4.cpp +++ b/tests/src/tests4.cpp @@ -1343,10 +1343,11 @@ namespace fb } }; + constexpr auto size = 128; + constexpr auto tree_size = 17; + void run_any_t() { - constexpr auto size = 512; - constexpr auto tree_size = 17; engine.reset(); tree_any love[size]; BLT_START_INTERVAL("Tree Construction", "any_t tree"); @@ -1362,8 +1363,6 @@ namespace fb void run_any_t_variant() { - constexpr auto size = 512; - constexpr auto tree_size = 17; engine.reset(); tree_any_variant love[size]; BLT_START_INTERVAL("Tree Construction", "any_t_variant tree"); @@ -1379,8 +1378,6 @@ namespace fb void run_any_t_union() { - constexpr auto size = 512; - constexpr auto tree_size = 17; engine.reset(); tree_any_union love[size]; BLT_START_INTERVAL("Tree Construction", "any_t_union tree"); @@ -1396,8 +1393,6 @@ namespace fb void run_std_any_t() { - constexpr auto size = 512; - constexpr auto tree_size = 17; engine.reset(); tree_std_any love[size]; BLT_START_INTERVAL("Tree Construction", "std::any tree");