diff --git a/include/roar/request.hpp b/include/roar/request.hpp index e87dedec..7a2f2636 100644 --- a/include/roar/request.hpp +++ b/include/roar/request.hpp @@ -32,11 +32,11 @@ namespace Roar { struct RequestExtensions { - std::optional> regexMatches_; - std::string path_; - std::unordered_map query_; - std::string host_; - std::string port_; + std::optional> regexMatches_{std::nullopt}; + std::string path_{}; + std::unordered_map query_{}; + std::string host_{}; + std::string port_{}; }; }