regenerated docs
This commit is contained in:
parent
7ad58eba93
commit
755cdd00ff
|
@ -51,7 +51,7 @@ all: html
|
|||
todo.html:gen_todo.py ../src/*.cpp ../include/libtorrent/*.hpp
|
||||
python gen_todo.py
|
||||
|
||||
reference.rst reference-Core.rst reference-String.rst reference-Storage.rst:gen_reference_doc.py ../include/libtorrent/*.hpp
|
||||
reference.rst reference-Plugins reference-Core.rst reference-String.rst reference-Storage.rst:gen_reference_doc.py ../include/libtorrent/*.hpp
|
||||
python gen_reference_doc.py
|
||||
|
||||
%.epub:%.rst
|
||||
|
|
851
docs/todo.html
851
docs/todo.html
File diff suppressed because it is too large
Load Diff
|
@ -210,7 +210,10 @@ namespace libtorrent
|
|||
|
||||
TORRENT_EXPORT void set_piece_hashes(create_torrent& t, std::string const& p
|
||||
, boost::function<void(int)> f, error_code& ec);
|
||||
|
||||
inline void set_piece_hashes(create_torrent& t, std::string const& p, error_code& ec)
|
||||
{
|
||||
set_piece_hashes(t, p, detail::nop, ec);
|
||||
}
|
||||
#ifndef BOOST_NO_EXCEPTIONS
|
||||
template <class Fun>
|
||||
void set_piece_hashes(create_torrent& t, std::string const& p, Fun f)
|
||||
|
@ -219,7 +222,6 @@ namespace libtorrent
|
|||
set_piece_hashes(t, p, f, ec);
|
||||
if (ec) throw libtorrent_exception(ec);
|
||||
}
|
||||
|
||||
inline void set_piece_hashes(create_torrent& t, std::string const& p)
|
||||
{
|
||||
error_code ec;
|
||||
|
@ -228,11 +230,6 @@ namespace libtorrent
|
|||
}
|
||||
#endif
|
||||
|
||||
inline void set_piece_hashes(create_torrent& t, std::string const& p, error_code& ec)
|
||||
{
|
||||
set_piece_hashes(t, p, detail::nop, ec);
|
||||
}
|
||||
|
||||
#if TORRENT_USE_WSTRING
|
||||
// wstring versions
|
||||
|
||||
|
|
Loading…
Reference in New Issue