show/hide this revision's text 4 deleted 597 characters in body

EDIT:Thanks to the helpful folks below, I worked around the error using #pragma, as follows:

//Bug workaround for boost 1.39#pragma warning(push)#pragma warning(disable: 4512)//end workaroundstd::vector<std::wstring> consoleParser::loadStringsFromFile(const std::wstring &fileName)    std::vector<std::wstring> files;    std::wstring fileString(loadFileAsString(fileName));    boost::algorithm::split(files, fileString, boost::is_any_of(L"\r\n'\""));    return files;//Restore error stack#pragma warning(pop)
        
show/hide this revision's text 3 deleted 1 characters in body

EDIT:Thanks to the helpful folks below, I worked around the error using #pragma, as follows:

//Bug workaround for boost 1.39#pragma warning(push)#pragma warning(disable: 4512)//end workaroundstd::vector<std::wstring> consoleParser::loadStringsFromFile(const std::wstring &fileName)    std::vector<std::wstring> files;    std::wstring fileString(loadFileAsString(fileName));    boost::algorithm::split(files, fileString, boost::is_any_of(L"\r\n'\""));    return files;//Restore error stack#pragma warning(pop)
        
show/hide this revision's text 2 edited title

Upgrading Boost Breaks Codefrom boost 1.38 to 1.39 causes my call to boost::algorithm::split not to compile

show/hide this revision's text 1