separate empty/parametrized constructors in Bounder
This commit is contained in:
parent
90e67e46d2
commit
e7791bb4df
1 changed files with 5 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Reference in a new issue