remove default values for verbose parameters, so as to make deprecated wrappers unused by default

This commit is contained in:
Johann Dreo 2010-10-31 21:36:53 +01:00
commit fc21827eca
4 changed files with 4 additions and 3 deletions

View file

@ -43,7 +43,7 @@ public:
rates.push_back(_rate);
}
void add(eoInit<EOT> & _init, double _rate, bool _verbose=false)
void add(eoInit<EOT> & _init, double _rate, bool _verbose)
{
eo::log << eo::warnings << "WARNING: the use of the verbose parameter in eoCombinedInit::add is deprecated and will be removed in the next release." << std::endl;
add( _init, _rate );

View file

@ -173,7 +173,7 @@ public:
virtual std::string className() const { return "eoPropCombinedQuadOp"; }
virtual void add(eoQuadOp<EOT> & _op, const double _rate, bool _verbose=false)
virtual void add(eoQuadOp<EOT> & _op, const double _rate, bool _verbose)
{
eo::log << eo::warnings << "WARNING: the use of the verbose parameter in eoPropCombinedQuadOp::add is deprecated and will be removed in the next release." << std::endl;
add(_op,_rate);

View file

@ -34,6 +34,7 @@ Authors:
#include <iostream>
#include <utils/eoMonitor.h>
#include <utils/eoLogger.h>
#include <eoObject.h>
/**

View file

@ -41,7 +41,7 @@ Authors:
class eoStdoutMonitor : public eoOStreamMonitor
{
public :
eoStdoutMonitor(bool _verbose=true, std::string _delim = "\t", unsigned int _width=20, char _fill=' ' ) :
eoStdoutMonitor(bool _verbose, std::string _delim = "\t", unsigned int _width=20, char _fill=' ' ) :
eoOStreamMonitor( std::cout, _verbose, _delim, _width, _fill)
{
eo::log << eo::warnings << "WARNING: the use of the verbose parameter in eoStdutMonitor constructor is deprecated and will be removed in the next release" << std::endl;