Skip to content

Commit d50b2e2

Browse files
committed
Added todos [skip ci]
1 parent 2e2ba17 commit d50b2e2

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

include/pgvector/halfvec.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ class HalfVector {
3131

3232
/// Creates a half vector from a `std::vector<float>`.
3333
// TODO add explicit in 0.3.0
34+
// TODO add noexcept in 0.3.0
3435
HalfVector(std::vector<float>&& value) {
3536
value_ = std::move(value);
3637
}

include/pgvector/vector.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ class Vector {
3131

3232
/// Creates a vector from a `std::vector<float>`.
3333
// TODO add explicit in 0.3.0
34+
// TODO add noexcept in 0.3.0
3435
Vector(std::vector<float>&& value) {
3536
value_ = std::move(value);
3637
}

0 commit comments

Comments
 (0)