From 3534706a593bd95c79b4c674bb52b9909eb92206 Mon Sep 17 00:00:00 2001 From: Brett Murphy Date: Tue, 13 Nov 2012 11:38:28 +1100 Subject: [PATCH] get OSX building again --- indra/llmessage/aihttpheaders.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llmessage/aihttpheaders.h b/indra/llmessage/aihttpheaders.h index 95766c3e9..da40ed7f9 100644 --- a/indra/llmessage/aihttpheaders.h +++ b/indra/llmessage/aihttpheaders.h @@ -110,7 +110,7 @@ struct AIHTTPReceivedHeadersCharCompare { struct AIHTTPReceivedHeadersCompare { bool operator()(std::string const& h1, std::string const& h2) const { - static AIHTTPReceivedHeadersCharCompare const predicate; + static AIHTTPReceivedHeadersCharCompare predicate; return std::lexicographical_compare(h1.begin(), h1.end(), h2.begin(), h2.end(), predicate); } };