Ostrzeżenie z boost :: split podczas kompilacji [duplikat]

Możliwy duplikat:
Dlaczego wywołanie boost: split () daje tak wiele ostrzeżeń?

To jest mój kod:

Account ParseString(string data){
    vector <string> fields;
    boost::split( fields, data, boost::is_any_of( "a,;" ));
    int limit = fields.size();
    for(int i = 0; i < limit; i++)
        cout << fields[i] << endl;
}

i to jest to, co otrzymuję podczas próby kompilacji:

d:\program files (x86)\visualstudio\vc\include\xutility(2227): warning C4996: 'std::_Copy_impl': Function call with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS. See documentation on how to use Visual C++ 'Checked Iterators'

Moje pytanie brzmi: co zrobiłem źle? Co mogę zrobić, aby zapobiec tym komunikatom o błędach?

questionAnswers(2)

yourAnswerToTheQuestion