We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d6a52f commit 1abf840Copy full SHA for 1abf840
include/pgvector/pqxx.hpp
@@ -40,7 +40,7 @@ template <> struct string_traits<pgvector::Vector> {
40
std::stringstream ss(std::string(text.substr(1, text.size() - 2)));
41
while (ss.good()) {
42
std::string substr;
43
- getline(ss, substr, ',');
+ std::getline(ss, substr, ',');
44
result.push_back(std::stof(substr));
45
}
46
return pgvector::Vector(result);
@@ -85,7 +85,7 @@ template <> struct string_traits<pgvector::HalfVector> {
85
86
87
88
89
90
91
return pgvector::HalfVector(result);
0 commit comments