Skip to content

Commit 4b94093

Browse files
committed
Updated style [skip ci]
1 parent 52284b5 commit 4b94093

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

include/pgvector/halfvec.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
namespace pgvector {
1818
/// A half vector.
1919
class HalfVector {
20-
public:
20+
public:
2121
/// @private
2222
// TODO remove in 0.3.0
2323
HalfVector() = default;
@@ -73,7 +73,7 @@ class HalfVector {
7373
return os;
7474
}
7575

76-
private:
76+
private:
7777
// TODO use std::float16_t for C++23
7878
std::vector<float> value_;
7979
};

include/pgvector/sparsevec.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
namespace pgvector {
1919
/// A sparse vector.
2020
class SparseVector {
21-
public:
21+
public:
2222
/// @private
2323
// TODO remove in 0.3.0
2424
SparseVector() = default;
@@ -119,7 +119,7 @@ class SparseVector {
119119
return os;
120120
}
121121

122-
private:
122+
private:
123123
int dimensions_;
124124
std::vector<int> indices_;
125125
std::vector<float> values_;

include/pgvector/vector.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
namespace pgvector {
1818
/// A vector.
1919
class Vector {
20-
public:
20+
public:
2121
/// @private
2222
// TODO remove in 0.3.0
2323
Vector() = default;
@@ -73,7 +73,7 @@ class Vector {
7373
return os;
7474
}
7575

76-
private:
76+
private:
7777
std::vector<float> value_;
7878
};
7979
} // namespace pgvector

0 commit comments

Comments
 (0)