aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-02-28 15:21:41 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-02-28 15:21:41 +0900
commit164938cc1900afe94128e83c8c52bf04a8981ded (patch)
tree671246dab453618ce412795b8575fc3bbbc46833
parent07485711f867813098180afcfe15e4af393b66ec (diff)
downloadlibquotient-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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/logging.h b/logging.h
index ae7e0332..8dbfdf30 100644
--- a/logging.h
+++ b/logging.h
@@ -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;