Merge branch 'niko_devel' into 'master'
Make serialization functions for non-basalt types static. See merge request basalt/basalt!30
This commit is contained in:
commit
2d21860d5c
|
@ -157,7 +157,7 @@ namespace cereal {
|
|||
|
||||
template <class Archive, class _Scalar, int _Rows, int _Cols, int _Options,
|
||||
int _MaxRows, int _MaxCols>
|
||||
inline
|
||||
static inline
|
||||
typename std::enable_if<_Rows == Eigen::Dynamic || _Cols == Eigen::Dynamic,
|
||||
void>::type
|
||||
save(Archive &ar, const Eigen::Matrix<_Scalar, _Rows, _Cols, _Options,
|
||||
|
@ -171,7 +171,7 @@ inline
|
|||
|
||||
template <class Archive, class _Scalar, int _Rows, int _Cols, int _Options,
|
||||
int _MaxRows, int _MaxCols>
|
||||
inline
|
||||
static inline
|
||||
typename std::enable_if<_Rows == Eigen::Dynamic || _Cols == Eigen::Dynamic,
|
||||
void>::type
|
||||
load(Archive &ar,
|
||||
|
|
|
@ -222,7 +222,7 @@ void serialize(Archive& ar, basalt::ImageData& m) {
|
|||
}
|
||||
|
||||
template <class Archive>
|
||||
void serialize(Archive& ar, Eigen::AffineCompact2f& m) {
|
||||
static void serialize(Archive& ar, Eigen::AffineCompact2f& m) {
|
||||
ar(m.matrix());
|
||||
}
|
||||
} // namespace cereal
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 12b6290f01aa49c15cfec4d8ed8f347323678297
|
||||
Subproject commit 2ae558ce2b494d21908391b89cf13df93d0dcfa9
|
Loading…
Reference in New Issue