We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb429dd commit ad4bfd1Copy full SHA for ad4bfd1
tests/sparse_tile.h
@@ -686,15 +686,15 @@ struct ArchiveLoadImpl<Archive, Eigen::Triplet<T>> {
686
static inline void load(const Archive& ar, Eigen::Triplet<T>& obj) {
687
int row, col;
688
T value;
689
- ar& row& col& value;
+ ar & row & col & value;
690
obj = Eigen::Triplet<T>(row, col, value);
691
}
692
};
693
694
template <class Archive, typename T>
695
struct ArchiveStoreImpl<Archive, Eigen::Triplet<T>> {
696
static inline void store(const Archive& ar, const Eigen::Triplet<T>& obj) {
697
- ar& obj.row() & obj.col() & obj.value();
+ ar & obj.row() & obj.col() & obj.value();
698
699
700
} // namespace archive
0 commit comments