Aviso com boost :: split ao compilar [duplicado]

Duplicata Possível:
Por que chamar boost: split () fornece tantos avisos?

Então, esse é o meu código:

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;
}

e é isso que eu recebo quando tento compilar:

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'

Minha pergunta é: o que eu fiz de errado? O que posso fazer para evitar essas mensagens de erro?

questionAnswers(2)

yourAnswerToTheQuestion