diff options
author | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-01-26 15:00:37 +0100 |
---|---|---|
committer | Christian Mollekopf <chrigi_1@fastmail.fm> | 2017-01-26 15:00:37 +0100 |
commit | 3f634202d70b677cb51587893c4b82dbd2123297 (patch) | |
tree | c50873b8f14a58f9da2ceabc26a1e1d45a66b3cb /common/log.h | |
parent | 561dbfed6e139d2c07f607f652f2f7a42e73dcae (diff) | |
download | sink-3f634202d70b677cb51587893c4b82dbd2123297.tar.gz sink-3f634202d70b677cb51587893c4b82dbd2123297.zip |
SINK_EXPORT for free functions needs to go to the beginning
Diffstat (limited to 'common/log.h')
-rw-r--r-- | common/log.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/log.h b/common/log.h index 0814af9..e85856a 100644 --- a/common/log.h +++ b/common/log.h | |||
@@ -80,7 +80,7 @@ struct SINK_EXPORT TraceTime | |||
80 | const int time; | 80 | const int time; |
81 | }; | 81 | }; |
82 | 82 | ||
83 | inline QDebug SINK_EXPORT operator<<(QDebug d, const TraceTime &time) | 83 | SINK_EXPORT inline QDebug operator<<(QDebug d, const TraceTime &time) |
84 | { | 84 | { |
85 | d << time.time << "[ms]"; | 85 | d << time.time << "[ms]"; |
86 | return d; | 86 | return d; |