mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-29 15:37:57 +00:00
resolves member function name conflict
This commit is contained in:
@@ -46,7 +46,7 @@ namespace websocketpp {
|
||||
class endpoint_base {
|
||||
protected:
|
||||
/// Start the run method of the endpoint's io_service object.
|
||||
void run() {
|
||||
void run_internal() {
|
||||
m_io_service.run();
|
||||
}
|
||||
|
||||
|
||||
@@ -220,7 +220,7 @@ void server<endpoint>::listen(uint16_t port) {
|
||||
|
||||
m_ws_endpoint.alog().at(log::alevel::DEVEL) << "role::server listening on port " << port << log::endl;
|
||||
|
||||
m_ws_endpoint.run();
|
||||
m_ws_endpoint.run_internal();
|
||||
}
|
||||
|
||||
template <class endpoint>
|
||||
|
||||
Reference in New Issue
Block a user