very silly const

v2
Brett 2024-10-05 14:48:04 -04:00
parent 7656e43e85
commit a9f5b9e97d
2 changed files with 5 additions and 5 deletions

View File

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

View File

@ -266,22 +266,22 @@ namespace blt
return elements.data(); return elements.data();
} }
constexpr auto begin() [[nodiscard]] constexpr auto begin() const
{ {
return elements.begin(); return elements.begin();
} }
constexpr auto end() [[nodiscard]] constexpr auto end() const
{ {
return elements.end(); return elements.end();
} }
constexpr auto rbegin() [[nodiscard]] constexpr auto rbegin() const
{ {
return elements.rbegin(); return elements.rbegin();
} }
constexpr auto rend() [[nodiscard]] constexpr auto rend() const
{ {
return elements.rend(); return elements.rend();
} }