mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
Merge pull request #113 from pmarques/master
Compiler error due to ambiguous methods resolution
This commit is contained in:
@@ -296,7 +296,8 @@ void server<endpoint>::listen(const std::string &host, const std::string &servic
|
||||
if (endpoint_iterator == end) {
|
||||
throw std::invalid_argument("Can't resolve host/service to listen");
|
||||
}
|
||||
listen(*endpoint_iterator,n);
|
||||
const boost::asio::ip::tcp::endpoint &ep = *endpoint_iterator;
|
||||
listen(ep,n);
|
||||
}
|
||||
|
||||
template <class endpoint>
|
||||
|
||||
Reference in New Issue
Block a user