diff options
| author | Per Larsson <[email protected]> | 2021-09-17 13:19:40 +0200 |
|---|---|---|
| committer | Per Larsson <[email protected]> | 2021-09-17 13:19:40 +0200 |
| commit | 52b1a52ac7a9613d60175e948b1a99f2a95dc3a7 (patch) | |
| tree | b6ba345511e503b5bfba9f857ab4c4925e5b6512 /zenhttp | |
| parent | Merge branch 'main' of https://github.com/EpicGames/zen (diff) | |
| download | zen-52b1a52ac7a9613d60175e948b1a99f2a95dc3a7.tar.xz zen-52b1a52ac7a9613d60175e948b1a99f2a95dc3a7.zip | |
Const correct.
Diffstat (limited to 'zenhttp')
| -rw-r--r-- | zenhttp/include/zenhttp/httpserver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zenhttp/include/zenhttp/httpserver.h b/zenhttp/include/zenhttp/httpserver.h index f656c69a8..ed6075c92 100644 --- a/zenhttp/include/zenhttp/httpserver.h +++ b/zenhttp/include/zenhttp/httpserver.h @@ -39,7 +39,7 @@ public: { std::vector<std::pair<std::string_view, std::string_view>> KvPairs; - std::string_view GetValue(std::string_view ParamName) + std::string_view GetValue(std::string_view ParamName) const { for (const auto& Kv : KvPairs) { |