separate empty/parametrized constructors in Bounder

This commit is contained in:
nojhan 2011-09-22 11:56:26 +02:00
commit e7791bb4df

View file

@ -39,7 +39,11 @@ template < typename EOT >
class edoBounder : public edoRepairer< EOT >
{
public:
edoBounder( EOT min = EOT(1, 0), EOT max = EOT(1, 0) )
edoBounder()
{}
edoBounder( EOT min/* = EOT(1, 0)*/, EOT max/* = EOT(1, 1)*/ )
: _min(min), _max(max)
{
assert(_min.size() > 0);