diff --git a/branches/ParadisEO-GPU/src/cudaType/moCudaBitVector.h b/branches/ParadisEO-GPU/src/cudaType/moCudaBitVector.h index 4c2a7231a..ac75919c9 100644 --- a/branches/ParadisEO-GPU/src/cudaType/moCudaBitVector.h +++ b/branches/ParadisEO-GPU/src/cudaType/moCudaBitVector.h @@ -75,9 +75,8 @@ public: *@param _b Value to assign to vector. */ - moCudaBitVector(unsigned _size, bool _b) { - - moCudaVector:: moCudaVector(_size); + moCudaBitVector(unsigned _size, bool _b) : + moCudaVector (_size) { for (unsigned i = 0; i < _size; i++) vect[i] = _b;