What compilers that we support do _not_ allow:


std::vector

and require that we use

using std::vector;
vector;

small test program:

#include <vector>

int main() {
        std::vector<int> vec;
        vec.push_back(1);
        return 0;
}

        Lgb

Reply via email to