diff options
| -rw-r--r-- | icespider/fcgi/cgiRequestBase.h | 3 | 
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;  | 
