From 357e57f70ca3e106fda786964ec7b397a26ed097 Mon Sep 17 00:00:00 2001 From: eidheim Date: Wed, 24 Feb 2016 09:17:09 +0100 Subject: [PATCH] Added reference to case insensitive implementation of unordered_multimap --- client_http.hpp | 1 + server_http.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/client_http.hpp b/client_http.hpp index cf62b52..65eb63c 100644 --- a/client_http.hpp +++ b/client_http.hpp @@ -17,6 +17,7 @@ namespace SimpleWeb { class Response { friend class ClientBase; + //Based on http://www.boost.org/doc/libs/1_60_0/doc/html/unordered/hash_equality.html class iequal_to { public: bool operator()(const std::string &key1, const std::string &key2) const { diff --git a/server_http.hpp b/server_http.hpp index 84e9d8b..4a47390 100644 --- a/server_http.hpp +++ b/server_http.hpp @@ -61,6 +61,7 @@ namespace SimpleWeb { class Request { friend class ServerBase; + //Based on http://www.boost.org/doc/libs/1_60_0/doc/html/unordered/hash_equality.html class iequal_to { public: bool operator()(const std::string &key1, const std::string &key2) const {