modify constructor

git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2196 331e1502-861f-0410-8da2-ba01fb791d7f
This commit is contained in:
boufaras 2011-03-15 13:38:58 +00:00
commit cb0ef340ad

View file

@ -75,9 +75,8 @@ public:
*@param _b Value to assign to vector.
*/
moCudaBitVector(unsigned _size, bool _b) {
moCudaVector<bool, Fitness>:: moCudaVector(_size);
moCudaBitVector(unsigned _size, bool _b) :
moCudaVector<bool, Fitness> (_size) {
for (unsigned i = 0; i < _size; i++)
vect[i] = _b;