remove default values for verbose parameters, so as to make deprecated wrappers unused by default
This commit is contained in:
parent
9c51b925b6
commit
fc21827eca
4 changed files with 4 additions and 3 deletions
|
|
@ -43,7 +43,7 @@ public:
|
||||||
rates.push_back(_rate);
|
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;
|
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 );
|
add( _init, _rate );
|
||||||
|
|
|
||||||
|
|
@ -173,7 +173,7 @@ public:
|
||||||
|
|
||||||
virtual std::string className() const { return "eoPropCombinedQuadOp"; }
|
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;
|
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);
|
add(_op,_rate);
|
||||||
|
|
|
||||||
|
|
@ -34,6 +34,7 @@ Authors:
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
#include <utils/eoMonitor.h>
|
#include <utils/eoMonitor.h>
|
||||||
|
#include <utils/eoLogger.h>
|
||||||
#include <eoObject.h>
|
#include <eoObject.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ Authors:
|
||||||
class eoStdoutMonitor : public eoOStreamMonitor
|
class eoStdoutMonitor : public eoOStreamMonitor
|
||||||
{
|
{
|
||||||
public :
|
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)
|
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;
|
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;
|
||||||
|
|
|
||||||
Reference in a new issue