make this compile

v2
Brett 2024-11-11 18:19:32 -05:00
parent 05e5fcf7f1
commit 1c931b2515
5 changed files with 1 additions and 21 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.20)
include(cmake/color.cmake)
set(BLT_VERSION 2.1.8)
set(BLT_VERSION 2.1.9)
set(BLT_TARGET BLT)

0
cloc.sh Executable file → Normal file
View File

0
commit.py.save Executable file → Normal file
View File

View File

@ -288,26 +288,6 @@ namespace blt
}
return {};
}
std::optional<V> search_min(const K& min)
{
auto point = nodes.begin();
while (point != nodes.end())
{
if (point->children == 0)
return {};
auto parent = point;
++point;
auto is_min = point->k < parent->k;
if (k >= parent->k)
{
if (is_min)
point = skip_children(point);
}
}
return {};
}
private:
auto skip_children(typename std::vector<node_t>::iterator begin)

0
py_commit_helper.sh Executable file → Normal file
View File