Hi! I have a vector of strings called citiesvector. For each string, I want to create a boost circular buffer named for that string. I tried the following code, but it isn't working:
1 2 3 4
for(unsignedint i = 0; i < citiesvector.size(); i++)
{
new boost::circular_buffer<double> citiesvector.at(i) (32);
}