Update of /cvsroot/boost-sandbox/boost-sandbox/boost/units/systems
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv7118/systems
Modified Files:
physical_units.hpp
Log Message:
cleanup
Index: physical_units.hpp
===================================================================
RCS file: /cvsroot/boost-sandbox/boost-sandbox/boost/units/systems/physical_units.hpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- physical_units.hpp 3 Apr 2007 17:12:25 -0000 1.5
+++ physical_units.hpp 3 Apr 2007 18:24:37 -0000 1.6
@@ -154,6 +154,9 @@
/// composite dimension for pressure : L^-1 M T^-2
typedef composite_dimension<length_tag,-1,mass_tag,1,time_tag,-2>::type pressure_type;
+/// composite dimension for specific volume : L^3 M^-1
+typedef composite_dimension<length_tag,3,mass_tag,-1>::type specific_volume_type;
+
/// composite dimension for stress : L^-1 M T^-2
typedef composite_dimension<length_tag,-1,mass_tag,1,time_tag,-2>::type stress_type;
|