Skip to content

Commit

Permalink
Merge pull request #944 from borglab/eigen-update
Browse files Browse the repository at this point in the history
Eigen Serialization Fix
  • Loading branch information
varunagrawal authored Nov 30, 2021
2 parents 384be1f + c0b65b2 commit 29ccbe2
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion gtsam/base/serialization.h
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@

#pragma once

#include <sstream>
#include <Eigen/Core>
#include <fstream>
#include <sstream>
#include <string>

// includes for standard serialization types
Expand All @@ -40,6 +41,17 @@
#include <boost/archive/binary_oarchive.hpp>
#include <boost/serialization/export.hpp>

// Workaround a bug in GCC >= 7 and C++17
// ref. https://gitlab.com/libeigen/eigen/-/issues/1676
#ifdef __GNUC__
#if __GNUC__ >= 7 && __cplusplus >= 201703L
namespace boost { namespace serialization { struct U; } }
namespace Eigen { namespace internal {
template<> struct traits<boost::serialization::U> {enum {Flags=0};};
} }
#endif
#endif

namespace gtsam {

/** @name Standard serialization
Expand Down

0 comments on commit 29ccbe2

Please sign in to comment.