Skip to content

Commit f9d2058

Browse files
committed
automatic code formatting by Visual Studio
1 parent e1d3e02 commit f9d2058

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

DataSerializer.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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();

HttpServer.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)