|
From: Matthias S. <mat...@us...> - 2007-04-10 22:58:48
|
Update of /cvsroot/boost-sandbox/boost-sandbox/boost/units/systems/cgs In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv11216/systems/cgs Modified Files: base.hpp Log Message: change dimension tagging Index: base.hpp =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/boost/units/systems/cgs/base.hpp,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- base.hpp 31 Mar 2007 01:17:17 -0000 1.4 +++ base.hpp 10 Apr 2007 22:58:42 -0000 1.5 @@ -56,21 +56,21 @@ } // namespace CGS template<> -struct base_unit_info<length_tag,CGS::system_tag> +struct base_unit_info<length_dim,CGS::system_tag> { static std::string name() { return "centimeter"; } static std::string symbol() { return "cm"; } }; template<> -struct base_unit_info<mass_tag,CGS::system_tag> +struct base_unit_info<mass_dim,CGS::system_tag> { static std::string name() { return "gram"; } static std::string symbol() { return "g"; } }; template<> -struct base_unit_info<time_tag,CGS::system_tag> +struct base_unit_info<time_dim,CGS::system_tag> { static std::string name() { return "second"; } static std::string symbol() { return "s"; } |