diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2020-04-09 06:49:49 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2020-04-09 06:49:49 -0400 |
commit | c7cf322be5b196ad838dc90fe5314971f39f22c2 (patch) | |
tree | c583fc752715dc62e375c2e326a377b0f5913f38 | |
parent | 320787f4059260c056b81289be1bc8458a6057a8 (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.h | 1 |
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> |