From 164938cc1900afe94128e83c8c52bf04a8981ded Mon Sep 17 00:00:00 2001
From: Kitsune Ral <Kitsune-Ral@users.sf.net>
Date: Wed, 28 Feb 2018 15:21:41 +0900
Subject: To the previous commit: µ (mu, micro) is a part of Latin-1 code page.
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

And QDebug doesn't work with u"" anyway.
---
 logging.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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;
-- 
cgit v1.2.3