aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llsd.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/llcommon/llsd.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/linden/indra/llcommon/llsd.cpp b/linden/indra/llcommon/llsd.cpp
index 7a0ff9d..342e356 100644
--- a/linden/indra/llcommon/llsd.cpp
+++ b/linden/indra/llcommon/llsd.cpp
@@ -27,8 +27,12 @@
27 27
28#include "llsd.h" 28#include "llsd.h"
29 29
30#include <sstream>
30#include <math.h> 31#include <math.h>
32
33#include "llerror.h"
31#include "../llmath/llmath.h" 34#include "../llmath/llmath.h"
35#include "llformat.h"
32 36
33namespace { 37namespace {
34 class ImplMap; 38 class ImplMap;
@@ -251,7 +255,7 @@ namespace {
251 public: 255 public:
252 ImplUUID(const LLSD::UUID& v) : Base(v) { } 256 ImplUUID(const LLSD::UUID& v) : Base(v) { }
253 257
254 virtual LLSD::String asString() const{ return mValue.getString(); } 258 virtual LLSD::String asString() const{ return mValue.asString(); }
255 virtual LLSD::UUID asUUID() const { return mValue; } 259 virtual LLSD::UUID asUUID() const { return mValue; }
256 }; 260 };
257 261