Skip to content

Commit

Permalink
Support for Boost::Serialization 1.74.
Browse files Browse the repository at this point in the history
An extra header may now be required for Boost 1.74. See boostorg/serialization#219 and, for
example, jngrad/espresso@a392907 .
  • Loading branch information
Haley Clark committed Dec 10, 2020
1 parent 34fc8bb commit 515aa6b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/Common_Boost_Serialization.cc
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
//Common_Boost_Serialization.cc - A part of DICOMautomaton 2016. Written by hal clark.

#include <boost/serialization/version.hpp>
#include <boost/archive/basic_archive.hpp>
//For binary archives.
#include <boost/archive/binary_iarchive.hpp>
Expand Down
3 changes: 2 additions & 1 deletion src/StructsIOBoostSerialization.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@

#pragma once

#include <boost/serialization/version.hpp>
#include <boost/serialization/library_version_type.hpp>
#include <boost/serialization/nvp.hpp>

#include <boost/serialization/string.hpp>
#include <boost/serialization/list.hpp>
//#include <boost/serialization/vector.hpp>
//#include <boost/serialization/map.hpp>
#include <boost/serialization/shared_ptr.hpp>
#include <boost/serialization/version.hpp>

#include "Structs.h"

Expand Down

0 comments on commit 515aa6b

Please sign in to comment.