forked from mia/Aegisub
Move Serverity_ID below the definition of log where it should be.
Originally committed to SVN as r4373.
This commit is contained in:
parent
9d0c5a4890
commit
0a453fe127
2 changed files with 3 additions and 4 deletions
|
@ -32,6 +32,9 @@ namespace agi {
|
|||
/// Global log sink.
|
||||
LogSink *log = new LogSink();
|
||||
|
||||
/// Short Severity ID
|
||||
/// Keep this ordered the same as Severity
|
||||
const char* Severity_ID = "EAWID";
|
||||
|
||||
SinkMessage::SinkMessage(const char *section, Severity severity, const char *file,
|
||||
const char *func, int line, timeval tv):
|
||||
|
|
|
@ -53,10 +53,6 @@ enum Severity {
|
|||
Debug ///< Enabled by default when compiled in debug mode.
|
||||
};
|
||||
|
||||
/// Short Severity ID
|
||||
/// Keep this ordered the same as Severity
|
||||
const char* Severity_ID = "EAWID";
|
||||
|
||||
/// Container to hold a single message
|
||||
struct SinkMessage {
|
||||
/// @brief Constructor
|
||||
|
|
Loading…
Reference in a new issue