diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-02-28 15:21:41 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2018-02-28 15:21:41 +0900 |
commit | 164938cc1900afe94128e83c8c52bf04a8981ded (patch) | |
tree | 671246dab453618ce412795b8575fc3bbbc46833 | |
parent | 07485711f867813098180afcfe15e4af393b66ec (diff) | |
download | libquotient-164938cc1900afe94128e83c8c52bf04a8981ded.tar.gz libquotient-164938cc1900afe94128e83c8c52bf04a8981ded.zip |
To the previous commit: µ (mu, micro) is a part of Latin-1 code page.
And QDebug doesn't work with u"" anyway.
-rw-r--r-- | logging.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -71,7 +71,7 @@ inline QDebug operator<< (QDebug debug_object, const QElapsedTimer& et) { auto val = et.nsecsElapsed() / 1000; if (val < 1000) - debug_object << val << u"µs"; + debug_object << val << "µs"; else debug_object << val / 1000 << "ms"; return debug_object; |