Use C++11 default member initializers

This commit is contained in:
MarcoFalke 2019-01-05 12:02:12 +01:00
parent f7e182a973
commit fa2510d5c1
No known key found for this signature in database
GPG key ID: CE2B75697E69A548
15 changed files with 35 additions and 82 deletions

View file

@ -124,7 +124,6 @@ public:
struct HTTPPathHandler
{
HTTPPathHandler() {}
HTTPPathHandler(std::string _prefix, bool _exactMatch, HTTPRequestHandler _handler):
prefix(_prefix), exactMatch(_exactMatch), handler(_handler)
{