diff options
| author | 2014-08-17 13:45:50 -0400 | |
|---|---|---|
| committer | 2014-08-17 13:45:55 -0400 | |
| commit | 90e994471a385d2b965e3843e1f693ccba6fb699 (patch) | |
| tree | b5835e0b235225f8478f26814205337d26a5d91a /src/common/log_manager.h | |
| parent | Merge pull request #47 from archshift/stdstring (diff) | |
| download | yuzu-90e994471a385d2b965e3843e1f693ccba6fb699.tar.gz yuzu-90e994471a385d2b965e3843e1f693ccba6fb699.tar.xz yuzu-90e994471a385d2b965e3843e1f693ccba6fb699.zip | |
Common: Move header guards over to pragma once
Also replaced C headers with the C++ equivalent ones
Diffstat (limited to 'src/common/log_manager.h')
| -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_ | ||