fix missing boost:: qualifier

This commit is contained in:
Arvid Norberg 2009-05-24 19:38:27 +00:00
parent 2f627a4b00
commit 7d32c3b2b0
1 changed files with 2 additions and 1 deletions

View File

@ -36,6 +36,7 @@ POSSIBILITY OF SUCH DAMAGE.
#include <boost/pool/pool.hpp>
#include <boost/detail/atomic_count.hpp>
#include <boost/intrusive_ptr.hpp>
#include <boost/cstdint.hpp>
namespace libtorrent {
namespace dht {
@ -89,7 +90,7 @@ struct observer : boost::noncopyable
#else
address_v4 target_addr;
#endif
uint16_t port;
boost::uint16_t port;
udp::endpoint target_ep() const { return udp::endpoint(target_addr, port); }
ptime sent;
#ifdef TORRENT_DEBUG