Hello,
I am using 5.19.04, Windows XP, VS 2008 working in release mode.
The following program (stripped down version of a larger program) crashes after it tries to add the strings. It will only crash if I link to libCore.lib.
#include <string>
using namespace std;
int main(int argc, char **argv)
{
string m_versionString;
string m_name = "AWPlotter";
m_versionString = m_name + string(" - Version: ");
return 0;
}
Is there a flag I can set to get around this?
Thanks,
Sanjeev
p.s. I am atatching the project file
test.zip (10.4 KB)