fix winrt compile error in windows.foundation.collections.h(428)

This commit is contained in:
John Sebastian Peterson 2015-03-10 03:14:52 +01:00
parent 7f160e42a5
commit e7caa2d20f
1 changed files with 2 additions and 3 deletions

View File

@ -63,7 +63,6 @@ using libtorrent::dht::node;
using libtorrent::dht::node_id; using libtorrent::dht::node_id;
using libtorrent::dht::packet_t; using libtorrent::dht::packet_t;
using libtorrent::dht::msg; using libtorrent::dht::msg;
using namespace libtorrent::detail;
enum enum
{ {
@ -393,7 +392,7 @@ namespace libtorrent { namespace dht
entry* n = (entry*)userdata; entry* n = (entry*)userdata;
std::string node; std::string node;
std::back_insert_iterator<std::string> out(node); std::back_insert_iterator<std::string> out(node);
write_endpoint(e.ep(), out); libtorrent::detail::write_endpoint(e.ep(), out);
n->list().push_back(entry(node)); n->list().push_back(entry(node));
} }
@ -412,7 +411,7 @@ namespace libtorrent { namespace dht
{ {
std::string node; std::string node;
std::back_insert_iterator<std::string> out(node); std::back_insert_iterator<std::string> out(node);
write_endpoint(i->ep(), out); libtorrent::detail::write_endpoint(i->ep(), out);
nodes.list().push_back(entry(node)); nodes.list().push_back(entry(node));
} }
if (!nodes.list().empty()) if (!nodes.list().empty())