diff options
Diffstat (limited to 'src/system.hh.in')
-rw-r--r-- | src/system.hh.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/system.hh.in b/src/system.hh.in index f71dce68..f063a761 100644 --- a/src/system.hh.in +++ b/src/system.hh.in @@ -158,6 +158,7 @@ typedef std::ostream::pos_type ostream_pos_type; #include <boost/iostreams/write.hpp> #define BOOST_IOSTREAMS_USE_DEPRECATED 1 #include <boost/iostreams/device/file_descriptor.hpp> +#include <boost/iterator/iterator_facade.hpp> #include <boost/iterator/transform_iterator.hpp> #include <boost/lexical_cast.hpp> #include <boost/operators.hpp> @@ -204,7 +205,7 @@ namespace serialization { template <class Archive> void serialize(Archive& ar, boost::filesystem::path& p, const unsigned int) { - std::string s; + std::string s; if (Archive::is_saving::value) s = p.string(); |