mirror of
https://github.com/boostorg/serialization.git
synced 2026-02-26 17:02:17 +00:00
use explicit namespace in the hope of fixing test failure for intel
This commit is contained in:
@@ -103,7 +103,7 @@ inline void save(
|
||||
const collection_size_type count(t.size());
|
||||
ar << BOOST_SERIALIZATION_NVP(count);
|
||||
if (!t.empty())
|
||||
ar << make_array(detail::get_data(t),t.size());
|
||||
ar << boost::serialization::make_array(detail::get_data(t),t.size());
|
||||
}
|
||||
|
||||
template<class Archive, class U, class Allocator>
|
||||
@@ -121,7 +121,7 @@ inline void load(
|
||||
ar >> BOOST_SERIALIZATION_NVP(item_version);
|
||||
}
|
||||
if (!t.empty())
|
||||
ar >> make_array(detail::get_data(t),t.size());
|
||||
ar >> boost::serialization::make_array(detail::get_data(t),t.size());
|
||||
}
|
||||
|
||||
// dispatch to either default or optimized versions
|
||||
|
||||
Reference in New Issue
Block a user