2011-11-20 00:30:18 +00:00
|
|
|
|
diff --git a/libs/units/example/autoprefixes.cpp b/libs/units/example/autoprefixes.cpp
|
|
|
|
|
index 8b2bc43..d04f2fe 100644
|
|
|
|
|
--- a/libs/units/example/autoprefixes.cpp
|
|
|
|
|
+++ b/libs/units/example/autoprefixes.cpp
|
|
|
|
|
@@ -67,7 +67,7 @@ struct thing_base_unit : boost::units::base_unit<thing_base_unit, boost::units::
|
|
|
|
|
struct euro_base_unit : boost::units::base_unit<euro_base_unit, boost::units::dimensionless_type, 5>
|
|
|
|
|
{
|
2018-12-01 15:16:03 +00:00
|
|
|
|
static constexpr const char* name() { return("EUR"); }
|
|
|
|
|
- static constexpr const char* symbol() { return("<22>"); }
|
|
|
|
|
+ static constexpr const char* symbol() { return("€"); }
|
2011-11-20 00:30:18 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
|
@@ -140,7 +140,7 @@ int main()
|
|
|
|
|
|
|
|
|
|
quantity<euro_base_unit::unit_type> ce = 2048. * euro_base_unit::unit_type();
|
|
|
|
|
cout << name_format << engineering_prefix << ce << endl; // 2.048 kiloEUR
|
|
|
|
|
- cout << symbol_format << engineering_prefix << ce << endl; // 2.048 k<>
|
|
|
|
|
+ cout << symbol_format << engineering_prefix << ce << endl; // 2.048 k€
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return 0;
|