Repository: trafficserver Updated Branches: refs/heads/master 93f332a0d -> ffe2484d1
Fix background_fetch build Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/ffe2484d Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/ffe2484d Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/ffe2484d Branch: refs/heads/master Commit: ffe2484d1a244a881541246574fdb0fa3a4f5104 Parents: 93f332a Author: James Peach <[email protected]> Authored: Fri Oct 31 14:47:14 2014 -0700 Committer: James Peach <[email protected]> Committed: Fri Oct 31 14:47:14 2014 -0700 ---------------------------------------------------------------------- plugins/experimental/background_fetch/background_fetch.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/ffe2484d/plugins/experimental/background_fetch/background_fetch.cc ---------------------------------------------------------------------- diff --git a/plugins/experimental/background_fetch/background_fetch.cc b/plugins/experimental/background_fetch/background_fetch.cc index fa8be35..de1f6e6 100644 --- a/plugins/experimental/background_fetch/background_fetch.cc +++ b/plugins/experimental/background_fetch/background_fetch.cc @@ -35,14 +35,13 @@ #include "ts/remap.h" #include "ink_defs.h" #include <set> - +#include <map> // Some wonkiness around compiler version and the unordered map (hash) #if HAVE_UNORDERED_MAP # include <unordered_map> typedef std::unordered_map<std::string, bool> OutstandingRequests; #else -# include <map> typedef std::map<std::string, bool> OutstandingRequests; #endif
