summaryrefslogtreecommitdiff
path: root/src/common/log_manager.h
diff options
context:
space:
mode:
authorGravatar bunnei2014-09-07 22:08:06 -0400
committerGravatar bunnei2014-09-07 22:08:06 -0400
commit85f1b76cd8a223968d61fbd93235acee5dcab47e (patch)
tree8b062c49cd6b6d34e39e4ad79005815e5c694c73 /src/common/log_manager.h
parentMerge pull request #93 from lioncash/ref (diff)
parentRemoved common/std_xyz, instead using the std header (diff)
downloadyuzu-85f1b76cd8a223968d61fbd93235acee5dcab47e.tar.gz
yuzu-85f1b76cd8a223968d61fbd93235acee5dcab47e.tar.xz
yuzu-85f1b76cd8a223968d61fbd93235acee5dcab47e.zip
Merge pull request #87 from archshift/remove-cruft
Removed redundant headers for std implementations
Diffstat (limited to 'src/common/log_manager.h')
-rw-r--r--src/common/log_manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log_manager.h b/src/common/log_manager.h
index 81d808825..ce62d0361 100644
--- a/src/common/log_manager.h
+++ b/src/common/log_manager.h
@@ -6,11 +6,11 @@
6 6
7#include "common/log.h" 7#include "common/log.h"
8#include "common/string_util.h" 8#include "common/string_util.h"
9#include "common/thread.h"
10#include "common/file_util.h" 9#include "common/file_util.h"
11 10
12#include <cstring> 11#include <cstring>
13#include <set> 12#include <set>
13#include <mutex>
14 14
15#define MAX_MESSAGES 8000 15#define MAX_MESSAGES 8000
16#define MAX_MSGLEN 1024 16#define MAX_MSGLEN 1024