v1
Brett 2024-09-23 14:45:32 -04:00
parent 7300f895bb
commit 96b071e337
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.20)
include(cmake/color.cmake)
set(BLT_VERSION 0.20.15)
set(BLT_VERSION 0.20.16)
set(BLT_TEST_VERSION 0.0.1)
set(BLT_TARGET BLT)

View File

@ -179,7 +179,7 @@ namespace blt
* Takes a value stored across a row, taking one from each column in the specified row
* @param row the row to extract from. defaults to the first row
*/
constexpr inline vec<T, columns> vec_from_column_row(blt::u32 row = 0)
constexpr inline vec<T, columns> vec_from_column_row(blt::u32 row = 0) const
{
vec<T, columns> ret;
for (blt::u32 j = 0; j < columns; j++)