diff options
Diffstat (limited to '')
| -rw-r--r-- | src/common/log_manager.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/common/log_manager.h b/src/common/log_manager.h index 6d3d7c7ff..81d808825 100644 --- a/src/common/log_manager.h +++ b/src/common/log_manager.h | |||
| @@ -2,16 +2,15 @@ | |||
| 2 | // Licensed under GPLv2 | 2 | // Licensed under GPLv2 |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #ifndef _LOGMANAGER_H_ | 5 | #pragma once |
| 6 | #define _LOGMANAGER_H_ | ||
| 7 | 6 | ||
| 8 | #include "common/log.h" | 7 | #include "common/log.h" |
| 9 | #include "common/string_util.h" | 8 | #include "common/string_util.h" |
| 10 | #include "common/thread.h" | 9 | #include "common/thread.h" |
| 11 | #include "common/file_util.h" | 10 | #include "common/file_util.h" |
| 12 | 11 | ||
| 12 | #include <cstring> | ||
| 13 | #include <set> | 13 | #include <set> |
| 14 | #include <string.h> | ||
| 15 | 14 | ||
| 16 | #define MAX_MESSAGES 8000 | 15 | #define MAX_MESSAGES 8000 |
| 17 | #define MAX_MSGLEN 1024 | 16 | #define MAX_MSGLEN 1024 |
| @@ -165,5 +164,3 @@ public: | |||
| 165 | static void Init(); | 164 | static void Init(); |
| 166 | static void Shutdown(); | 165 | static void Shutdown(); |
| 167 | }; | 166 | }; |
| 168 | |||
| 169 | #endif // _LOGMANAGER_H_ | ||