*** empty log message ***

This commit is contained in:
Daniel Wallin 2004-01-04 12:54:38 +00:00
parent 01d04c159a
commit 1baef63b99
2 changed files with 7 additions and 1 deletions

View File

@ -87,6 +87,8 @@ namespace libtorrent
const torrent_info& info const torrent_info& info
, const boost::filesystem::path& path); , const boost::filesystem::path& path);
~piece_manager();
void check_pieces( void check_pieces(
boost::mutex& mutex boost::mutex& mutex
, detail::piece_checker_data& data , detail::piece_checker_data& data
@ -107,7 +109,7 @@ namespace libtorrent
private: private:
struct impl; struct impl;
opaque_value_ptr<impl, false> m_pimpl; std::auto_ptr<impl> m_pimpl;
}; };
} }

View File

@ -425,6 +425,10 @@ namespace libtorrent {
{ {
} }
piece_manager::~piece_manager()
{
}
void piece_manager::impl::export_piece_map( void piece_manager::impl::export_piece_map(
std::vector<int>& p) const std::vector<int>& p) const
{ {