diff --git a/src/utils/include/utils/Vector.hpp b/src/utils/include/utils/Vector.hpp index 4f6ebb4331..f921a7b297 100644 --- a/src/utils/include/utils/Vector.hpp +++ b/src/utils/include/utils/Vector.hpp @@ -86,7 +86,7 @@ template class Vector : public Array { copy_init(std::begin(v), std::end(v)); } - explicit constexpr Vector(std::span span) : Base() { + explicit Vector(std::span span) : Base() { if (span.size() != N) { throw std::length_error( "Construction of Vector from Container of wrong length.");