Update of /cvsroot/boost-sandbox/boost-sandbox/boost/units/systems/temperature
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11216/systems/temperature
Modified Files:
celsius.hpp fahrenheit.hpp
Log Message:
change dimension tagging
Index: celsius.hpp
===================================================================
RCS file: /cvsroot/boost-sandbox/boost-sandbox/boost/units/systems/temperature/celsius.hpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- celsius.hpp 2 Apr 2007 21:25:32 -0000 1.1
+++ celsius.hpp 10 Apr 2007 22:58:42 -0000 1.2
@@ -36,7 +36,7 @@
} // namespace celsius
-template<> struct base_unit_info<temperature_tag,celsius::system_tag>
+template<> struct base_unit_info<temperature_dim,celsius::system_tag>
{
static std::string name() { return "Celsius"; }
static std::string symbol() { return "C"; }
Index: fahrenheit.hpp
===================================================================
RCS file: /cvsroot/boost-sandbox/boost-sandbox/boost/units/systems/temperature/fahrenheit.hpp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- fahrenheit.hpp 2 Apr 2007 21:25:32 -0000 1.1
+++ fahrenheit.hpp 10 Apr 2007 22:58:42 -0000 1.2
@@ -36,7 +36,7 @@
} // namespace fahrenheit
-template<> struct base_unit_info<temperature_tag,fahrenheit::system_tag>
+template<> struct base_unit_info<temperature_dim,fahrenheit::system_tag>
{
static std::string name() { return "Fahrenheit"; }
static std::string symbol() { return "F"; }
|