diff options
Diffstat (limited to 'zencore/include')
| -rw-r--r-- | zencore/include/zencore/httpserver.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zencore/include/zencore/httpserver.h b/zencore/include/zencore/httpserver.h index 563245264..2f566b858 100644 --- a/zencore/include/zencore/httpserver.h +++ b/zencore/include/zencore/httpserver.h @@ -178,8 +178,8 @@ public: // Synchronous operations - inline [[nodiscard]] std::string_view RelativeUri() const { return m_Uri; } // Returns URI without service prefix - inline [[nodiscard]] std::string_view QueryString() const { return m_QueryString; } + [[nodiscard]] inline std::string_view RelativeUri() const { return m_Uri; } // Returns URI without service prefix + [[nodiscard]] inline std::string_view QueryString() const { return m_QueryString; } inline bool IsHandled() const { return m_IsHandled; } struct QueryParams |