Skip to content

Commit

Permalink
add missing boost/noncopyable include
Browse files Browse the repository at this point in the history
  • Loading branch information
arvidn committed Oct 25, 2018
1 parent 12c52e8 commit a5da48e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
* fix missing boost/noncopyable.hpp includes
* fix python binding for torrent_info::creation_date()

1.1.10 release
Expand Down
2 changes: 1 addition & 1 deletion include/libtorrent/disk_io_job.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ POSSIBILITY OF SUCH DAMAGE.
#include <string>
#include <boost/function/function1.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/noncopyable.hpp>

#include "libtorrent/aux_/disable_warnings_pop.hpp"

Expand Down
1 change: 1 addition & 0 deletions include/libtorrent/kademlia/observer.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ POSSIBILITY OF SUCH DAMAGE.
#include <boost/detail/atomic_count.hpp>
#include <boost/intrusive_ptr.hpp>
#include <boost/cstdint.hpp>
#include <boost/noncopyable.hpp>

#include "libtorrent/aux_/disable_warnings_pop.hpp"

Expand Down
1 change: 1 addition & 0 deletions include/libtorrent/proxy_base.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ POSSIBILITY OF SUCH DAMAGE.
#include "libtorrent/aux_/disable_warnings_push.hpp"
#include <boost/function/function1.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/noncopyable.hpp>
#include "libtorrent/aux_/disable_warnings_pop.hpp"

namespace libtorrent {
Expand Down
1 change: 1 addition & 0 deletions include/libtorrent/tracker_manager.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ POSSIBILITY OF SUCH DAMAGE.
#include <boost/tuple/tuple.hpp>
#include <boost/unordered_map.hpp>
#include <boost/optional.hpp>
#include <boost/noncopyable.hpp>

#ifdef TORRENT_USE_OPENSSL
// there is no forward declaration header for asio
Expand Down
1 change: 1 addition & 0 deletions src/kademlia/dht_storage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ POSSIBILITY OF SUCH DAMAGE.
#include <boost/bind.hpp>
#include <boost/function/function1.hpp>
#include <boost/tuple/tuple.hpp>
#include <boost/noncopyable.hpp>

#include "libtorrent/aux_/disable_warnings_pop.hpp"

Expand Down

0 comments on commit a5da48e

Please sign in to comment.