File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ class DataSerializerDocument : public rapidjson::Document
2727};
2828
2929
30- DataSerializer::Document::Document ():
30+ DataSerializer::Document::Document () :
3131 m_ptrDocument(std::make_unique<DataSerializerDocument>())
3232{
3333 m_ptrDocument->SetObject ();
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ class HttpServerApp : public crow::SimpleApp
3535};
3636
3737
38- HttpServer::HttpServer ():
38+ HttpServer::HttpServer () :
3939 m_ptrApp(std::make_unique<HttpServerApp>())
4040{
4141}
@@ -113,7 +113,7 @@ void HttpServer::setup_routing(DataEngine& engine)
113113
114114 // Set value
115115 CROW_ROUTE (app, " /api/records/<string>" ).methods (crow::HTTPMethod::POST)(
116- [&engine](const crow::request& req, const std::string& nameRaw)
116+ [&engine](const crow::request& req, const std::string& nameRaw)
117117 {
118118 using namespace std ::literals;
119119 HttpServerHelpers::JsonBody body;
You can’t perform that action at this time.
0 commit comments