Skip to content

Commit

Permalink
Update shared_ptr_helper.hpp
Browse files Browse the repository at this point in the history
Attempt to solve boostorg#319 , using the technique discussed in the thread
  • Loading branch information
correaa authored Aug 12, 2024
1 parent 0c53f8e commit 1c22660
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/boost/serialization/shared_ptr_helper.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ namespace boost {
namespace serialization {

#ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
template<class Archive, template<class U> class SPT >
template<class Archive, template<class> class SPT, class U >
void load(
Archive & ar,
SPT< class U > &t,
SPT< U > &t,
const unsigned int file_version
);
#endif
Expand Down

0 comments on commit 1c22660

Please sign in to comment.