*** empty log message ***

This commit is contained in:
Arvid Norberg 2004-03-05 16:46:38 +00:00
parent 3dac95965e
commit 8363c809f3
1 changed files with 2 additions and 2 deletions

View File

@ -1147,13 +1147,13 @@ namespace libtorrent
file_sizes.push_back(i->integer());
}
#else
// typedef entry::integer_type (entry::*mem_fun_type)() const;
typedef entry::integer_type const& (entry::*mem_fun_type)() const;
std::transform(
l.begin()
, l.end()
, std::back_inserter(file_sizes)
, boost::bind(&entry::integer, _1));
, boost::bind((mem_fun_type)&entry::integer, _1));
#endif
if (!match_filesizes(info, save_path, file_sizes))
return;