Skip to content

Commit 289bb91

Browse files
committed
Updated todos [skip ci]
1 parent c14123c commit 289bb91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/pgvector/pqxx.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ template <> struct string_traits<pgvector::Vector> {
3333

3434
std::vector<float> result;
3535
if (text.size() > 2) {
36-
// TODO don't copy string
36+
// TODO remove all copying
3737
std::istringstream ss(std::string(text.substr(1, text.size() - 2)));
3838
while (ss.good()) {
3939
std::string substr;
@@ -70,7 +70,7 @@ template <> struct string_traits<pgvector::HalfVector> {
7070

7171
std::vector<float> result;
7272
if (text.size() > 2) {
73-
// TODO don't copy string
73+
// TODO remove all copying
7474
std::istringstream ss(std::string(text.substr(1, text.size() - 2)));
7575
while (ss.good()) {
7676
std::string substr;

0 commit comments

Comments
 (0)