We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e2ba17 commit d50b2e2Copy full SHA for d50b2e2
2 files changed
include/pgvector/halfvec.hpp
@@ -31,6 +31,7 @@ class HalfVector {
31
32
/// Creates a half vector from a `std::vector<float>`.
33
// TODO add explicit in 0.3.0
34
+ // TODO add noexcept in 0.3.0
35
HalfVector(std::vector<float>&& value) {
36
value_ = std::move(value);
37
}
include/pgvector/vector.hpp
@@ -31,6 +31,7 @@ class Vector {
/// Creates a vector from a `std::vector<float>`.
Vector(std::vector<float>&& value) {
0 commit comments