diff --git a/CMakeLists.txt b/CMakeLists.txt index 68153f3..06ca11b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.20) include(cmake/color.cmake) -set(BLT_VERSION 0.18.9) +set(BLT_VERSION 0.18.10) set(BLT_TEST_VERSION 0.0.1) set(BLT_TARGET BLT) diff --git a/include/blt/math/vectors.h b/include/blt/math/vectors.h index ade8c32..08085bd 100644 --- a/include/blt/math/vectors.h +++ b/include/blt/math/vectors.h @@ -69,7 +69,7 @@ namespace blt constexpr vec(std::initializer_list args): vec(U(), args) {} - template + template = true> constexpr explicit vec(Args... args): vec(std::array{static_cast(args)...}) {}