No, I'm not really sure what settings it should have. Here's the code that I've been having a problem with.
Code:
#include <string>
#include <vector>
#include <iostream>
using namespace std;
int main()
{
vector<string> myVector = {"A first string", "A second string"};
// adding some vectors using push_back
myVector.push_back("A third string");
myVector.push_back("The last string in the vector");
// iterate over the elements in the vector and print them
for (auto iterator = myVector.cbegin();
Iterator != myVector.cend(); ++iterator) {
cout << *iterator << endl;
}
// print the elements again using C++11 range-based for loop
for (auto& str : myVector)
cout << str << endl;
return 0;
}