Tag: visual c ++ 2012

Lambda的显式返回types

当我尝试编译这个代码(VS2010)时,我得到以下错误: error C3499: a lambda that has been specified to have a void return type cannot return a value void DataFile::removeComments() { string::const_iterator start, end; boost::regex expression("^\\s?#"); boost::match_results<std::string::const_iterator> what; boost::match_flag_type flags = boost::match_default; // Look for lines that either start with a hash (#) // or have nothing but white-space preceeding the hash symbol remove_if(rawLines.begin(), […]

Visual Studio 2012中的C ++ 11function

Visual Studio 2012(VS2010之后的下一个版本)的预览版现在可用 。 有谁知道它支持什么新的C ++ 11function? (我目前无法尝试)。