forked from mia/Aegisub
Rearrage SinkMessage to eliminate padding
This commit is contained in:
parent
af544f05af
commit
75df295fc0
1 changed files with 3 additions and 3 deletions
|
@ -70,13 +70,13 @@ extern LogSink *log;
|
||||||
|
|
||||||
/// Container to hold a single message
|
/// Container to hold a single message
|
||||||
struct SinkMessage {
|
struct SinkMessage {
|
||||||
|
std::string message; ///< Formatted message
|
||||||
|
agi_timeval tv; ///< Time at execution
|
||||||
const char *section; ///< Section info eg "video/open" "video/seek" etc
|
const char *section; ///< Section info eg "video/open" "video/seek" etc
|
||||||
Severity severity; ///< Severity
|
|
||||||
const char *file; ///< Source file
|
const char *file; ///< Source file
|
||||||
const char *func; ///< Function name
|
const char *func; ///< Function name
|
||||||
|
Severity severity; ///< Severity
|
||||||
int line; ///< Source line
|
int line; ///< Source line
|
||||||
agi_timeval tv; ///< Time at execution
|
|
||||||
std::string message; ///< Formatted message
|
|
||||||
};
|
};
|
||||||
|
|
||||||
class Emitter;
|
class Emitter;
|
||||||
|
|
Loading…
Reference in a new issue