Remove non-ASCII characters from the distributable parts

Closes #1542
This commit is contained in:
Martin Hořeňovský 2019-02-18 10:33:41 +01:00
parent c99a346490
commit 093b72416d
No known key found for this signature in database
GPG Key ID: DE48307B8B0D381A
2 changed files with 2 additions and 2 deletions

View File

@ -354,7 +354,7 @@ namespace Generators {
template<typename L>
// Note: The type after -> is weird, because VS2015 cannot parse
// the expression used in the typedef inside, when it is in
// return type. Yeah, ¯\_(ツ)_/¯
// return type. Yeah.
auto generate( SourceLineInfo const& lineInfo, L const& generatorExpression ) -> decltype(std::declval<decltype(generatorExpression())>().get()) {
using UnderlyingType = typename decltype(generatorExpression())::type;

View File

@ -245,7 +245,7 @@ public:
case Unit::Nanoseconds:
return "ns";
case Unit::Microseconds:
return "µs";
return "us";
case Unit::Milliseconds:
return "ms";
case Unit::Seconds: