summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2020-11-17 14:40:29 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2020-11-17 14:40:29 +0000
commit15d55dc003d0ba576fdbc5e2069907ba169dc735 (patch)
treeb8d2edcb52a3532e6a2246ef2f2f1d9a6e2a2b99
parentBuild against external slicer-parser library (diff)
downloadicespider-0.6.4.1.tar.bz2
icespider-0.6.4.1.tar.xz
icespider-0.6.4.1.zip
Use AdHoc case_less, not Slicericespider-0.6.4.1
-rw-r--r--icespider/fcgi/cgiRequestBase.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/icespider/fcgi/cgiRequestBase.h b/icespider/fcgi/cgiRequestBase.h
index c0d6d81..6a63a88 100644
--- a/icespider/fcgi/cgiRequestBase.h
+++ b/icespider/fcgi/cgiRequestBase.h
@@ -1,6 +1,7 @@
#ifndef ICESPIDER_CGI_CGIREQUESTBASE_H
#define ICESPIDER_CGI_CGIREQUESTBASE_H
+#include <case_less.h>
#include <core.h>
#include <ihttpRequest.h>
#include <map>
@@ -15,7 +16,7 @@ namespace IceSpider {
public:
using VarMap = std::map<std::string_view, const std::string_view>;
- using HdrMap = std::map<std::string_view, const std::string_view, Slicer::case_less>;
+ using HdrMap = std::map<std::string_view, const std::string_view, AdHoc::case_less>;
[[nodiscard]] const PathElements & getRequestPath() const override;
[[nodiscard]] PathElements & getRequestPath() override;