Rearrage SinkMessage to eliminate padding

This commit is contained in:
Thomas Goyne 2014-01-10 09:27:15 -08:00
parent 4d389c65a3
commit 5088f96f93
1 changed files with 3 additions and 3 deletions

View File

@ -70,13 +70,13 @@ extern LogSink *log;
/// Container to hold a single message
struct SinkMessage {
std::string message; ///< Formatted message
agi_timeval tv; ///< Time at execution
const char *section; ///< Section info eg "video/open" "video/seek" etc
Severity severity; ///< Severity
const char *file; ///< Source file
const char *func; ///< Function name
Severity severity; ///< Severity
int line; ///< Source line
agi_timeval tv; ///< Time at execution
std::string message; ///< Formatted message
};
class Emitter;