summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2020-04-09 06:49:49 -0400
committerNat Goodspeed <nat@lindenlab.com>2020-04-09 06:49:49 -0400
commitc7cf322be5b196ad838dc90fe5314971f39f22c2 (patch)
treec583fc752715dc62e375c2e326a377b0f5913f38
parent320787f4059260c056b81289be1bc8458a6057a8 (diff)
DRTVWR-476: #include "boost/noncopyable.hpp" in httpcommon.h.
Apparently, in previous Boost versions, boost::noncopyable was sneaking into the namespace via other headers. Now the compiler complains about its absence without an explicit #include.
-rw-r--r--indra/llcorehttp/httpcommon.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llcorehttp/httpcommon.h b/indra/llcorehttp/httpcommon.h
index e4bd4957f8..18505e0aad 100644
--- a/indra/llcorehttp/httpcommon.h
+++ b/indra/llcorehttp/httpcommon.h
@@ -193,6 +193,7 @@
#include "boost/shared_ptr.hpp"
#include "boost/weak_ptr.hpp"
#include "boost/function.hpp"
+#include "boost/noncopyable.hpp"
#include <string>
#include <curl/curl.h>