diff --git a/trunk/paradiseo-mo/src/problems/bitString/moBitsWithoutReplNeighborhood.h b/trunk/paradiseo-mo/src/problems/bitString/moBitsWithoutReplNeighborhood.h index c07bc451c..652e8ed02 100644 --- a/trunk/paradiseo-mo/src/problems/bitString/moBitsWithoutReplNeighborhood.h +++ b/trunk/paradiseo-mo/src/problems/bitString/moBitsWithoutReplNeighborhood.h @@ -94,7 +94,7 @@ public: firstIndex = 1; for(int d = firstIndex; d <= nBits; d++) { - vector bits(d); + std::vector bits(d); // the first one for this Hamming distance for(unsigned i = 0; i < d; i++) @@ -207,7 +207,7 @@ protected: unsigned int sampleSize; // list of neighbors - vector< vector > neighborsVec; + std::vector< std::vector > neighborsVec; // key of the neighbor which is currently explored unsigned int key;