summaryrefslogtreecommitdiff
path: root/include/logger.h
diff options
context:
space:
mode:
authorAttila Molnar <attilamolnar@hush.com>2014-06-24 12:15:03 +0200
committerAttila Molnar <attilamolnar@hush.com>2014-06-24 12:15:03 +0200
commite66ea395e424983cb30c11e4050020f8e6f482e1 (patch)
tree4d2107c1fffe6067d267b1b4a56d875bb665f42a /include/logger.h
parent53f72298692a4b76d49327c8d696c8c2927c2a68 (diff)
Change allocation of InspIRCd::Logs to be physically part of the object containing it using fakederef
Diffstat (limited to 'include/logger.h')
-rw-r--r--include/logger.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/logger.h b/include/logger.h
index 2ea280be8..c56859a62 100644
--- a/include/logger.h
+++ b/include/logger.h
@@ -114,7 +114,7 @@ class CoreExport LogStream : public classbase
typedef std::map<FileWriter*, int> FileLogMap;
-class CoreExport LogManager
+class CoreExport LogManager : public fakederef<LogManager>
{
private:
/** Lock variable, set to true when a log is in progress, which prevents further loggging from happening and creating a loop.