very silly const
parent
7656e43e85
commit
a9f5b9e97d
|
@ -1,6 +1,6 @@
|
|||
cmake_minimum_required(VERSION 3.20)
|
||||
include(cmake/color.cmake)
|
||||
set(BLT_VERSION 2.1.2)
|
||||
set(BLT_VERSION 2.1.3)
|
||||
|
||||
set(BLT_TARGET BLT)
|
||||
|
||||
|
|
|
@ -266,22 +266,22 @@ namespace blt
|
|||
return elements.data();
|
||||
}
|
||||
|
||||
constexpr auto begin()
|
||||
[[nodiscard]] constexpr auto begin() const
|
||||
{
|
||||
return elements.begin();
|
||||
}
|
||||
|
||||
constexpr auto end()
|
||||
[[nodiscard]] constexpr auto end() const
|
||||
{
|
||||
return elements.end();
|
||||
}
|
||||
|
||||
constexpr auto rbegin()
|
||||
[[nodiscard]] constexpr auto rbegin() const
|
||||
{
|
||||
return elements.rbegin();
|
||||
}
|
||||
|
||||
constexpr auto rend()
|
||||
[[nodiscard]] constexpr auto rend() const
|
||||
{
|
||||
return elements.rend();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue