From 2b5f71b52dbd2f2115b98ff695eaa768e84c5d74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Tue, 3 Dec 2013 15:30:02 +0100 Subject: [PATCH] MSVC 2013 compatibility: no Unicode char/string literals. --- src/DebugTools/Profiler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/DebugTools/Profiler.cpp b/src/DebugTools/Profiler.cpp index 741b79b59..5724acf1d 100644 --- a/src/DebugTools/Profiler.cpp +++ b/src/DebugTools/Profiler.cpp @@ -121,7 +121,7 @@ void Profiler::printStatistics() { Debug() << "Statistics for last" << measureDuration << "frames:"; for(std::size_t i = 0; i != sections.size(); ++i) Debug() << " " << sections[totalSorted[i]] << duration_cast(totalData[totalSorted[i]]).count()/frameCount - #ifndef CORRADE_GCC44_COMPATIBILITY + #if !defined(CORRADE_GCC44_COMPATIBILITY) && !defined(CORRADE_MSVC2013_COMPATIBILITY) << u8"µs"; #else << "µs";