aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llcommon/llerror.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llcommon/llerror.cpp')
-rw-r--r--linden/indra/llcommon/llerror.cpp7
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