From 2860bbedc77c17f86767c57d211c2d5852e2d113 Mon Sep 17 00:00:00 2001 From: ralfulrich <ralf.ulrich@kit.edu> Date: Tue, 30 Mar 2021 09:14:08 +0200 Subject: [PATCH] removed special characters --- corsika/framework/units/quantity_io_celsius.hpp | 4 ++-- corsika/framework/units/quantity_io_engineering.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/corsika/framework/units/quantity_io_celsius.hpp b/corsika/framework/units/quantity_io_celsius.hpp index cc145ecdf..354ea74d6 100644 --- a/corsika/framework/units/quantity_io_celsius.hpp +++ b/corsika/framework/units/quantity_io_celsius.hpp @@ -22,14 +22,14 @@ namespace phys { namespace units { /** - * celsius, [°C]. + * celsius, [C]. */ template<> struct unit_info< thermodynamic_temperature_d > { static bool single() { return true; } static std::string name() { return "celsius"; } - static std::string symbol() { return "°C"; } + static std::string symbol() { return "C"; } }; namespace literals { diff --git a/corsika/framework/units/quantity_io_engineering.hpp b/corsika/framework/units/quantity_io_engineering.hpp index 16b4be8f5..b6665370d 100644 --- a/corsika/framework/units/quantity_io_engineering.hpp +++ b/corsika/framework/units/quantity_io_engineering.hpp @@ -31,7 +31,7 @@ #include <sstream> /* - * Note: micro, µ, may not work everywhere, so you can define a glyph yourself: + * Note: micro, may not work everywhere, so you can define a glyph yourself: */ #ifndef ENG_FORMAT_MICRO_GLYPH # define ENG_FORMAT_MICRO_GLYPH "u" -- GitLab