Skip to content

Commit a110db7

Browse files
committed
Added todos [skip ci]
1 parent f9c733b commit a110db7

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

include/pgvector/halfvec.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ class HalfVector {
3636
}
3737

3838
/// Creates a half vector from an array.
39+
// TODO remove in 0.3.0
3940
HalfVector(const float* value, size_t n) {
4041
value_ = std::vector<float>{value, value + n};
4142
}

include/pgvector/vector.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ class Vector {
3636
}
3737

3838
/// Creates a vector from an array.
39+
// TODO remove in 0.3.0
3940
Vector(const float* value, size_t n) {
4041
value_ = std::vector<float>{value, value + n};
4142
}

0 commit comments

Comments
 (0)