diff options
author | Jacek Antonelli | 2008-08-15 23:44:58 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:58 -0500 |
commit | 089fc07d207c71ce1401e72f09c31ad8c45872e2 (patch) | |
tree | 0028955add042c6f45b47a7b774adeeac9c592cb /linden/indra/llcommon/llerror.cpp | |
parent | Second Life viewer sources 1.16.0.5 (diff) | |
download | meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.zip meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.gz meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.bz2 meta-impy-089fc07d207c71ce1401e72f09c31ad8c45872e2.tar.xz |
Second Life viewer sources 1.17.0.12
Diffstat (limited to 'linden/indra/llcommon/llerror.cpp')
-rw-r--r-- | linden/indra/llcommon/llerror.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/linden/indra/llcommon/llerror.cpp b/linden/indra/llcommon/llerror.cpp index 9bcb415..714a265 100644 --- a/linden/indra/llcommon/llerror.cpp +++ b/linden/indra/llcommon/llerror.cpp | |||
@@ -40,6 +40,7 @@ extern apr_thread_mutex_t *gLogMutexp; | |||
40 | #include "lllivefile.h" | 40 | #include "lllivefile.h" |
41 | #include "llsd.h" | 41 | #include "llsd.h" |
42 | #include "llsdserialize.h" | 42 | #include "llsdserialize.h" |
43 | #include "llstl.h" | ||
43 | 44 | ||
44 | #include <algorithm> | 45 | #include <algorithm> |
45 | #include <cctype> | 46 | #include <cctype> |
@@ -397,6 +398,12 @@ namespace LLError | |||
397 | shouldLogCallCounter(0) | 398 | shouldLogCallCounter(0) |
398 | { } | 399 | { } |
399 | 400 | ||
401 | ~Settings() | ||
402 | { | ||
403 | for_each(recorders.begin(), recorders.end(), | ||
404 | DeletePointer()); | ||
405 | } | ||
406 | |||
400 | static Settings*& getPtr(); | 407 | static Settings*& getPtr(); |
401 | }; | 408 | }; |
402 | 409 | ||