Skip to content
Snippets Groups Projects
Commit d0d07cca authored by Rider Linden's avatar Rider Linden
Browse files

Fix for linux build

parent 0b4b1219
No related branches found
No related tags found
No related merge requests found
...@@ -28,8 +28,10 @@ ...@@ -28,8 +28,10 @@
#define LLHANDLE_H #define LLHANDLE_H
#include "llpointer.h" #include "llpointer.h"
#include <stdexcept>
#include <boost/type_traits/is_convertible.hpp> #include <boost/type_traits/is_convertible.hpp>
#include <boost/utility/enable_if.hpp> #include <boost/utility/enable_if.hpp>
#include <boost/throw_exception.hpp>
/** /**
* Helper object for LLHandle. Don't instantiate these directly, used * Helper object for LLHandle. Don't instantiate these directly, used
...@@ -216,7 +218,7 @@ class LLHandleProvider ...@@ -216,7 +218,7 @@ class LLHandleProvider
/* /*
* $TODO: Derive from LLException * $TODO: Derive from LLException
*/ */
struct LLExeceptionStaleHandle : public std::runtime_error class LLExeceptionStaleHandle : public std::runtime_error
{ {
public: public:
LLExeceptionStaleHandle(): LLExeceptionStaleHandle():
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment