|
From: Steven W. <ste...@us...> - 2007-04-04 23:50:42
|
Update of /cvsroot/boost-sandbox/boost-sandbox/libs/units/test In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv3682/boost-sandbox/libs/units/test Modified Files: test_predicates.cpp Log Message: Fixed namespaces Index: test_predicates.cpp =================================================================== RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/units/test/test_predicates.cpp,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- test_predicates.cpp 4 Apr 2007 20:06:57 -0000 1.2 +++ test_predicates.cpp 4 Apr 2007 23:49:15 -0000 1.3 @@ -30,12 +30,12 @@ namespace bu = boost::units; -typedef base_dimension<0> dimension_tag; +typedef bu::base_dimension<0> dimension_tag; struct system1 : bu::ordinal<100> {}; struct system2 : bu::ordinal<101> {}; -typedef bu::dimension_tag::type dimension; +typedef dimension_tag::type dimension; int main(int,char *[]) { |