diff options
author | Rider Linden <rider@lindenlab.com> | 2016-07-20 16:45:17 -0700 |
---|---|---|
committer | Rider Linden <rider@lindenlab.com> | 2016-07-20 16:45:17 -0700 |
commit | d0d07ccac565632497c50510714b30503be8aa94 (patch) | |
tree | caca64e49be98d9a65632147671b793c2f853e6d /indra/llcommon | |
parent | 0b4b1219459d123d62d4b6e332781416e73e6666 (diff) |
Fix for linux build
Diffstat (limited to 'indra/llcommon')
-rw-r--r-- | indra/llcommon/llhandle.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llcommon/llhandle.h b/indra/llcommon/llhandle.h index dfbfb91fc1..98ad7af81a 100644 --- a/indra/llcommon/llhandle.h +++ b/indra/llcommon/llhandle.h @@ -28,8 +28,10 @@ #define LLHANDLE_H #include "llpointer.h" +#include <stdexcept> #include <boost/type_traits/is_convertible.hpp> #include <boost/utility/enable_if.hpp> +#include <boost/throw_exception.hpp> /** * Helper object for LLHandle. Don't instantiate these directly, used @@ -216,7 +218,7 @@ private: /* * $TODO: Derive from LLException */ -struct LLExeceptionStaleHandle : public std::runtime_error +class LLExeceptionStaleHandle : public std::runtime_error { public: LLExeceptionStaleHandle(): |