From 28225224848ff295abc0dc85b7ca5fc2ba84617f Mon Sep 17 00:00:00 2001 From: Brett <brettmaster1@gmail.com> Date: Thu, 13 Mar 2025 14:58:11 -0400 Subject: [PATCH] zip needs limits now? --- CMakeLists.txt | 2 +- include/blt/iterator/zip.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7528446..714721a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.20) include(cmake/color.cmake) -set(BLT_VERSION 5.2.24) +set(BLT_VERSION 5.2.25) set(BLT_TARGET BLT) diff --git a/include/blt/iterator/zip.h b/include/blt/iterator/zip.h index 27a3760..bf7c069 100644 --- a/include/blt/iterator/zip.h +++ b/include/blt/iterator/zip.h @@ -21,6 +21,7 @@ #include <blt/iterator/common.h> #include <tuple> +#include <limits> namespace blt {