Bug #5516 ยป 0001-Address-WServer.C-clang-3.8-compiler-error.patch
| src/Wt/WServer.C | ||
|---|---|---|
|
{
|
||
|
ApplicationEvent event(sessionId, function, fallbackFunction);
|
||
|
ioService().schedule(milliSeconds,
|
||
|
std::bind(&WebController::handleApplicationEvent,
|
||
|
webController_, event));
|
||
|
ioService().schedule(milliSeconds, [this, event] () {
|
||
|
webController_->handleApplicationEvent(event);
|
||
|
});
|
||
|
}
|
||
|
void WServer::addEntryPoint(EntryPointType type, ApplicationCreator callback,
|
||