diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-06-24 12:15:03 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-06-24 12:15:03 +0200 |
commit | e66ea395e424983cb30c11e4050020f8e6f482e1 (patch) | |
tree | 4d2107c1fffe6067d267b1b4a56d875bb665f42a /include/inspircd.h | |
parent | 53f72298692a4b76d49327c8d696c8c2927c2a68 (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.h | 2 |
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. |