Skip to content

Commit ad4bfd1

Browse files
[copilot] fix spacing from VSCode auto-format
1 parent bb429dd commit ad4bfd1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/sparse_tile.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -686,15 +686,15 @@ struct ArchiveLoadImpl<Archive, Eigen::Triplet<T>> {
686686
static inline void load(const Archive& ar, Eigen::Triplet<T>& obj) {
687687
int row, col;
688688
T value;
689-
ar& row& col& value;
689+
ar & row & col & value;
690690
obj = Eigen::Triplet<T>(row, col, value);
691691
}
692692
};
693693

694694
template <class Archive, typename T>
695695
struct ArchiveStoreImpl<Archive, Eigen::Triplet<T>> {
696696
static inline void store(const Archive& ar, const Eigen::Triplet<T>& obj) {
697-
ar& obj.row() & obj.col() & obj.value();
697+
ar & obj.row() & obj.col() & obj.value();
698698
}
699699
};
700700
} // namespace archive

0 commit comments

Comments
 (0)