I need a function for splitting strings on a dleimiter, and I\'m using the boost library for other things, so I tried using boost::split. It works, but it gives me a bunch o
The first line of the warning tells you everything, both why and how to avoid it, among other things this: To disable this warning, use -D_SCL_SECURE_NO_WARNINGS. So go to the project properties, and put _SCL_SECURE_NO_WARNINGS among predefined macros.