diff --git a/CMakeLists.txt b/CMakeLists.txt index 26162ac..68153f3 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.20) include(cmake/color.cmake) -set(BLT_VERSION 0.18.8) +set(BLT_VERSION 0.18.9) set(BLT_TEST_VERSION 0.0.1) set(BLT_TARGET BLT) diff --git a/include/blt/std/ranges.h b/include/blt/std/ranges.h index 9e6b26d..b54dff7 100644 --- a/include/blt/std/ranges.h +++ b/include/blt/std/ranges.h @@ -176,7 +176,7 @@ namespace blt } template - static inline auto enumerate(Begin&& begin, End&& end) + static inline auto iterate(Begin&& begin, End&& end) { return itr::itr_container{std::forward(begin), std::forward(end)}; }