From 7c49a8a854a364518161a222c4ee7ee6900e95c1 Mon Sep 17 00:00:00 2001 From: Brett Laptop Date: Sat, 20 Jul 2024 13:31:58 -0400 Subject: [PATCH] slight name change iterator enumeration was closer to iteration, name now reflects that --- CMakeLists.txt | 2 +- include/blt/std/ranges.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)}; }