v2
Brett 2025-02-27 15:19:50 -05:00
parent 58ea39be08
commit d8f943ba62
2 changed files with 7 additions and 2 deletions

View File

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

View File

@ -31,9 +31,14 @@ namespace blt::iterator
{
using type = std::tuple<T>;
static auto convert(T& f)
{
return std::forward_as_tuple(f);
}
static auto convert(T&& f)
{
return std::forward_as_tuple(std::forward<T>(f));
return std::forward_as_tuple(f);
}
};