summaryrefslogtreecommitdiff
path: root/include/inspircd.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/inspircd.h
parent53f72298692a4b76d49327c8d696c8c2927c2a68 (diff)
Change allocation of InspIRCd::Logs to be physically part of the object containing it using fakederef
Diffstat (limited to 'include/inspircd.h')
-rw-r--r--include/inspircd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index 9d00454b4..91aba7862 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -362,7 +362,7 @@ class CoreExport InspIRCd
/** LogManager handles logging.
*/
- LogManager *Logs;
+ LogManager Logs;
/** ModuleManager contains everything related to loading/unloading
* modules.