From 19bb69bb35e46ce1b280490d932c2487440535b5 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Mon, 11 Mar 2024 10:58:30 -0400 Subject: [PATCH] size change --- CMakeLists.txt | 2 +- tests/src/tests4.cpp | 11 +++-------- 2 files changed, 4 insertions(+), 9 deletions(-) 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");