diff options
author | robot-contrib <robot-contrib@yandex-team.com> | 2022-09-06 14:48:46 +0300 |
---|---|---|
committer | robot-contrib <robot-contrib@yandex-team.com> | 2022-09-06 14:48:46 +0300 |
commit | 96df1adeb1d068660b1117244bf8143e735341b3 (patch) | |
tree | 7ee6a36be498248883c5446b292f6adc058948ac /contrib/restricted/boost/serialization/src/polymorphic_binary_iarchive.cpp | |
parent | 494edfef2c7dd60976c0dd1f6ad4910b5d875e67 (diff) | |
download | ydb-96df1adeb1d068660b1117244bf8143e735341b3.tar.gz |
Update contrib/restricted/boost/serialization to 1.80.0
Diffstat (limited to 'contrib/restricted/boost/serialization/src/polymorphic_binary_iarchive.cpp')
-rw-r--r-- | contrib/restricted/boost/serialization/src/polymorphic_binary_iarchive.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/contrib/restricted/boost/serialization/src/polymorphic_binary_iarchive.cpp b/contrib/restricted/boost/serialization/src/polymorphic_binary_iarchive.cpp new file mode 100644 index 0000000000..7fcca705a8 --- /dev/null +++ b/contrib/restricted/boost/serialization/src/polymorphic_binary_iarchive.cpp @@ -0,0 +1,30 @@ +/////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 +// polymorphic_binary_iarchive.cpp: + +// (C) Copyright 2018 Robert Ramey - http://www.rrsd.com . +// Use, modification and distribution is subject to the Boost Software +// License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at +// http://www.boost.org/LICENSE_1_0.txt) + +// See http://www.boost.org for updates, documentation, and revision history. + +#if (defined _MSC_VER) && (_MSC_VER == 1200) +# pragma warning (disable : 4786) // too long name, harmless warning +#endif + +#define BOOST_ARCHIVE_SOURCE +#include <boost/serialization/config.hpp> +#include <boost/archive/polymorphic_binary_iarchive.hpp> + +// explicitly instantiate for this type of text stream +#include <boost/archive/impl/archive_serializer_map.ipp> + +namespace boost { +namespace archive { +namespace detail { + +template class archive_serializer_map<polymorphic_binary_iarchive>; + +} // detail +} // archive +} // boost |