chhange
parent
58ea39be08
commit
d8f943ba62
|
@ -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)
|
||||
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue