aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llsd.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:44:50 -0500
committerJacek Antonelli2008-08-15 23:44:50 -0500
commit89fe5dab825a62a0e3fd8d248cbc91c65eb2a426 (patch)
treebcff14b7888d04a2fec799c59369f6095224bd08 /linden/indra/llcommon/llsd.cpp
parentSecond Life viewer sources 1.13.3.2 (diff)
downloadmeta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.zip
meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.gz
meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.bz2
meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.xz
Second Life viewer sources 1.14.0.0
Diffstat (limited to 'linden/indra/llcommon/llsd.cpp')
-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