Blame boost-1.48.0-fix-non-utf8-files.patch

113e7e1
diff --git a/libs/units/example/autoprefixes.cpp b/libs/units/example/autoprefixes.cpp
113e7e1
index 8b2bc43..d04f2fe 100644
113e7e1
--- a/libs/units/example/autoprefixes.cpp
113e7e1
+++ b/libs/units/example/autoprefixes.cpp
113e7e1
@@ -67,7 +67,7 @@ struct thing_base_unit : boost::units::base_unit
113e7e1
 struct euro_base_unit : boost::units::base_unit<euro_base_unit, boost::units::dimensionless_type, 5>
113e7e1
 {
113e7e1
   static const char* name() { return("EUR"); }
113e7e1
-  static const char* symbol() { return("€"); }
113e7e1
+  static const char* symbol() { return("€"); }
113e7e1
 };
113e7e1
 
113e7e1
 int main()
113e7e1
@@ -140,7 +140,7 @@ int main()
113e7e1
 
113e7e1
   quantity<euro_base_unit::unit_type> ce = 2048. * euro_base_unit::unit_type();
113e7e1
   cout << name_format << engineering_prefix << ce << endl;  // 2.048 kiloEUR
113e7e1
-  cout << symbol_format << engineering_prefix << ce << endl;  // 2.048 k€
113e7e1
+  cout << symbol_format << engineering_prefix << ce << endl;  // 2.048 k€
113e7e1
 
113e7e1
 
113e7e1
     return 0;