I\'ve got a bit of a problem. Essentially, I need to store a large list of whitelisted entries inside my program, and I\'d like to include such a list directly -- I don\'t w
I claim no credit for this one:
https://social.msdn.microsoft.com/Forums/vstudio/en-US/c573db8b-c9cd-43d7-9f89-202ba9417296/fatal-error-c1091
Use the STL instead.
Code Snippet
#include
std::ostringstream oss;
oss << myString1 << myString2 << myString3 << myString4;
oss.str() would now return an instance of the STL's std:: string class, and oss.str().c_str() would return a const char*