mirror of
https://github.com/boostorg/serialization.git
synced 2026-01-27 19:32:07 +00:00
cleanup visibiliy / auto link macros throughout project - still more to be done
This commit is contained in:
@@ -40,7 +40,7 @@ basic_serializer_map::type_info_pointer_compare::operator()(
|
||||
return *lhs < *rhs;
|
||||
}
|
||||
|
||||
BOOST_ARCHIVE_DECL(bool)
|
||||
BOOST_ARCHIVE_DECL bool
|
||||
basic_serializer_map::insert(const basic_serializer * bs){
|
||||
// attempt to insert serializer into it's map
|
||||
// the following is commented out - rather than being just
|
||||
@@ -72,7 +72,7 @@ basic_serializer_map::insert(const basic_serializer * bs){
|
||||
return true;
|
||||
}
|
||||
|
||||
BOOST_ARCHIVE_DECL(void)
|
||||
BOOST_ARCHIVE_DECL void
|
||||
basic_serializer_map::erase(const basic_serializer * bs){
|
||||
map_type::iterator it = m_map.begin();
|
||||
map_type::iterator it_end = m_map.end();
|
||||
@@ -92,7 +92,7 @@ basic_serializer_map::erase(const basic_serializer * bs){
|
||||
//if(*it == bs)
|
||||
// m_map.erase(it);
|
||||
}
|
||||
BOOST_ARCHIVE_DECL(const basic_serializer *)
|
||||
BOOST_ARCHIVE_DECL const basic_serializer *
|
||||
basic_serializer_map::find(
|
||||
const boost::serialization::extended_type_info & eti
|
||||
) const {
|
||||
|
||||
Reference in New Issue
Block a user