|
From: Matthias S. <mat...@us...> - 2007-04-13 04:56:14
|
Update of /cvsroot/boost-sandbox/boost-sandbox/boost/units/detail In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv13206/boost/units/detail Modified Files: dim_impl.hpp Log Message: forward declarations and granular metafunctions/predicates added Index: dim_impl.hpp =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/boost/units/detail/dim_impl.hpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- dim_impl.hpp 12 Apr 2007 00:39:12 -0000 1.2 +++ dim_impl.hpp 13 Apr 2007 04:56:14 -0000 1.3 @@ -25,7 +25,7 @@ namespace detail { -struct dim_tag {}; +struct dim_tag { }; } @@ -43,10 +43,10 @@ template<typename T,typename V> struct dim { - typedef dim type; + typedef dim type; typedef detail::dim_tag tag; - typedef T tag_type; - typedef V value_type; + typedef T tag_type; + typedef V value_type; }; } |