Update of /cvsroot/boost-sandbox/boost-sandbox/libs/units/example
In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24297/boost-sandbox/libs/units/example
Modified Files:
unit_example_22.cpp
Log Message:
Removed unreferenced arguments
Index: unit_example_22.cpp
===================================================================
RCS file: /cvsroot/boost-sandbox/boost-sandbox/libs/units/example/unit_example_22.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- unit_example_22.cpp 4 Apr 2007 20:06:57 -0000 1.9
+++ unit_example_22.cpp 5 Apr 2007 00:36:58 -0000 1.10
@@ -361,7 +361,7 @@
template<class Char, class Traits>
std::basic_ostream<Char, Traits>& operator<<(std::basic_ostream<Char, Traits>& os,
- const SI::energy& u)
+ const SI::energy&)
{
os << "J";
return os;
@@ -369,7 +369,7 @@
template<class Char, class Traits>
std::basic_ostream<Char, Traits>& operator<<(std::basic_ostream<Char, Traits>& os,
- const SI::power& u)
+ const SI::power&)
{
os << "W";
return os;
|