aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon
diff options
context:
space:
mode:
authorAleric Inglewood2010-10-22 00:51:53 +0200
committerAleric Inglewood2010-10-22 00:51:53 +0200
commit7c4e01af677907b75694b9c4827d6f3ba56a5e19 (patch)
treefd743d3cefc7d4e671c6a6429be50e76191bbd9c /linden/indra/llcommon
parentDon't dump callstacks at clean exit of viewer. (diff)
parentChanged version to Experimental 2010.10.17 (diff)
downloadmeta-impy-7c4e01af677907b75694b9c4827d6f3ba56a5e19.zip
meta-impy-7c4e01af677907b75694b9c4827d6f3ba56a5e19.tar.gz
meta-impy-7c4e01af677907b75694b9c4827d6f3ba56a5e19.tar.bz2
meta-impy-7c4e01af677907b75694b9c4827d6f3ba56a5e19.tar.xz
Merge branch 'weekly' of http://github.com/imprudence/imprudence into weekly
Diffstat (limited to 'linden/indra/llcommon')
-rw-r--r--linden/indra/llcommon/llstring.h1
-rw-r--r--linden/indra/llcommon/stdtypes.h9
2 files changed, 9 insertions, 1 deletions
diff --git a/linden/indra/llcommon/llstring.h b/linden/indra/llcommon/llstring.h
index 7db62bc..3c6cd43 100644
--- a/linden/indra/llcommon/llstring.h
+++ b/linden/indra/llcommon/llstring.h
@@ -870,6 +870,7 @@ void LLStringUtilBase<T>::addCRLF(std::basic_string<T>& string)
870 } 870 }
871 871
872 string.assign(t, size); 872 string.assign(t, size);
873 delete[] t;
873 } 874 }
874} 875}
875 876
diff --git a/linden/indra/llcommon/stdtypes.h b/linden/indra/llcommon/stdtypes.h
index af0b4dd..aed1e46 100644
--- a/linden/indra/llcommon/stdtypes.h
+++ b/linden/indra/llcommon/stdtypes.h
@@ -64,10 +64,17 @@ typedef long long unsigned int U64;
64#endif 64#endif
65#endif 65#endif
66 66
67#ifdef LL_DARWIN
68 #ifndef BOOL
69 #define BOOL S32
70 #endif
71#else
72 typedef S32 BOOL;
73#endif
74
67typedef float F32; 75typedef float F32;
68typedef double F64; 76typedef double F64;
69 77
70typedef S32 BOOL;
71typedef U8 KEY; 78typedef U8 KEY;
72typedef U32 MASK; 79typedef U32 MASK;
73typedef U32 TPACKETID; 80typedef U32 TPACKETID;