diff options
author | Ansariel Hiller <Ansariel@users.noreply.github.com> | 2024-08-20 17:41:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-20 18:41:48 +0300 |
commit | 9f7dd0177201fe080c287144b99a70125be1fb2b (patch) | |
tree | 399330b2b71b34bb53bf314254eedb8b067ab8e5 /indra/llcorehttp | |
parent | 37dcb67d4204beb79c6eae9f38ffecd0d0d49f6f (diff) |
Clean up boost includes and remove compiler warning pragma for unreachable code in PCH (#2361)
Diffstat (limited to 'indra/llcorehttp')
-rw-r--r-- | indra/llcorehttp/bufferarray.h | 1 | ||||
-rw-r--r-- | indra/llcorehttp/httpcommon.h | 6 |
2 files changed, 1 insertions, 6 deletions
diff --git a/indra/llcorehttp/bufferarray.h b/indra/llcorehttp/bufferarray.h index 0269d1785e..5105dbc4f7 100644 --- a/indra/llcorehttp/bufferarray.h +++ b/indra/llcorehttp/bufferarray.h @@ -30,7 +30,6 @@ #include <cstdlib> #include <vector> -#include "boost/intrusive_ptr.hpp" #include "_refcounted.h" diff --git a/indra/llcorehttp/httpcommon.h b/indra/llcorehttp/httpcommon.h index 0a1c5ed101..511a17e000 100644 --- a/indra/llcorehttp/httpcommon.h +++ b/indra/llcorehttp/httpcommon.h @@ -189,13 +189,9 @@ #include "linden_common.h" // Modifies curl/curl.h interfaces #include "llsd.h" -#include "boost/intrusive_ptr.hpp" -#include "boost/shared_ptr.hpp" -#include "boost/weak_ptr.hpp" -#include "boost/function.hpp" -#include "boost/noncopyable.hpp" #include <string> #include <curl/curl.h> +#include "boost/noncopyable.hpp" namespace LLCore { |