aboutsummaryrefslogtreecommitdiff
path: root/logging.h
diff options
context:
space:
mode:
Diffstat (limited to 'logging.h')
-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;