diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2024-05-10 11:05:56 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2024-05-10 11:05:56 -0400 |
commit | 2c687e6d687ead0f29c096271b207dbe16b31c35 (patch) | |
tree | 9afe484a086c7028f91b84e8cc2f575ea239f566 /indra | |
parent | 271bc05b91772e5aedd834db116734b34f0108a1 (diff) |
Fix up a few #includes
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/lldependencies.h | 3 | ||||
-rw-r--r-- | indra/llcommon/llevents.h | 5 |
2 files changed, 5 insertions, 3 deletions
diff --git a/indra/llcommon/lldependencies.h b/indra/llcommon/lldependencies.h index 950af4a4ad..e225119dfb 100644 --- a/indra/llcommon/lldependencies.h +++ b/indra/llcommon/lldependencies.h @@ -30,6 +30,8 @@ #if ! defined(LL_LLDEPENDENCIES_H) #define LL_LLDEPENDENCIES_H +#include "linden_common.h" +#include "llexception.h" #include <string> #include <vector> #include <set> @@ -40,7 +42,6 @@ #include <boost/range/iterator_range.hpp> #include <boost/function.hpp> #include <boost/bind.hpp> -#include "llexception.h" /***************************************************************************** * Utilities diff --git a/indra/llcommon/llevents.h b/indra/llcommon/llevents.h index 15d1d5035c..2cc1f91408 100644 --- a/indra/llcommon/llevents.h +++ b/indra/llcommon/llevents.h @@ -49,10 +49,11 @@ #endif #include <boost/optional/optional.hpp> -#include "llsd.h" -#include "llsingleton.h" #include "lldependencies.h" #include "llexception.h" +#include "llmutex.h" +#include "llsd.h" +#include "llsingleton.h" // hack for testing #ifndef testable |