From d0d07ccac565632497c50510714b30503be8aa94 Mon Sep 17 00:00:00 2001
From: Rider Linden <rider@lindenlab.com>
Date: Wed, 20 Jul 2016 16:45:17 -0700
Subject: [PATCH] Fix for linux build

---
 indra/llcommon/llhandle.h | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/indra/llcommon/llhandle.h b/indra/llcommon/llhandle.h
index dfbfb91fc1d..98ad7af81ac 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 @@ class LLHandleProvider
 /*
  * $TODO: Derive from LLException
  */
-struct LLExeceptionStaleHandle : public std::runtime_error
+class LLExeceptionStaleHandle : public std::runtime_error
 {
 public:
     LLExeceptionStaleHandle():
-- 
GitLab