From 50faba808b7262f38503fb099718587be887e5c0 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sun, 26 Jun 2022 03:37:36 +0200 Subject: [PATCH] Comment. --- modules/web/http/request.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/web/http/request.h b/modules/web/http/request.h index 890ac516e..6196f4439 100644 --- a/modules/web/http/request.h +++ b/modules/web/http/request.h @@ -18,6 +18,7 @@ class Cookie; class HTTPSession; class WebPermission; +//Rename to WebServerRequest class Request { public: WebServer *server; @@ -37,7 +38,7 @@ public: Ref session; std::map data; - std::map > reference_data; + std::map> reference_data; Ref get_or_create_session(); @@ -172,4 +173,4 @@ RequestPool::~RequestPool() { _requests.clear(); } -#endif \ No newline at end of file +#endif