several fix of minor warnings
This commit is contained in:
parent
1cdbb036d3
commit
0332920d63
14 changed files with 22 additions and 20 deletions
|
|
@ -64,7 +64,7 @@ public:
|
|||
_setter(setter)
|
||||
{}
|
||||
|
||||
virtual D operator()( eoPop<EOType>& pop )
|
||||
virtual D operator()( eoPop<EOType>& )
|
||||
{
|
||||
_setter( _getter() );
|
||||
return this->_distrib;
|
||||
|
|
|
|||
|
|
@ -51,13 +51,13 @@ public:
|
|||
* The default implementation is to push back a true boolean.
|
||||
* If you have a more complex data structure, you can just overload this.
|
||||
*/
|
||||
virtual void make_true( AtomType & atom, unsigned int i, unsigned int j )
|
||||
virtual void make_true( AtomType & atom, unsigned int, unsigned int )
|
||||
{
|
||||
atom.push_back( 1 );
|
||||
}
|
||||
|
||||
/** @see make_true */
|
||||
virtual void make_false( AtomType & atom, unsigned int i, unsigned int j )
|
||||
virtual void make_false( AtomType & atom, unsigned int, unsigned int )
|
||||
{
|
||||
atom.push_back( 0 );
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue