Fixed order of field initialization

This commit is contained in:
lganzzzo 2018-05-16 01:52:24 +03:00
parent c7a8ec48c3
commit 9826028b9a

View File

@ -57,10 +57,10 @@ private:
private:
oatpp::concurrency::SpinLock::Atom m_atom;
Connections m_connections;
HttpProcessor::RequestInterceptors* m_requestInterceptors;
private:
HttpRouter* m_router;
std::shared_ptr<handler::ErrorHandler> m_errorHandler;
HttpProcessor::RequestInterceptors* m_requestInterceptors;
public:
Task(HttpRouter* router,
const std::shared_ptr<handler::ErrorHandler>& errorHandler,