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
|
|
@ -34,6 +34,7 @@ Authors:
|
|||
#include <iostream>
|
||||
|
||||
#include <utils/eoMonitor.h>
|
||||
#include <utils/eoLogger.h>
|
||||
#include <eoObject.h>
|
||||
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Reference in a new issue