जब मैं इस कोड (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(), rawLines.end(), [&expression, &start, &end, &what, &flags](const string& line)
{
start = line.begin();
end = line.end();
bool temp = boost::regex_search(start, end, what, expression, flags);
return temp;
});
}
मैंने यह कैसे निर्दिष्ट किया कि लैम्ब्डा में 'शून्य' वापसी प्रकार है। अधिक-अधिक, मैं यह कैसे निर्दिष्ट करूँ कि लैम्ब्डा में 'बूल' वापसी प्रकार है?
अपडेट करें
निम्नलिखित संकलन करता है। क्या कोई मुझे बता सकता है कि क्यों संकलन करता है और दूसरा नहीं करता है?
void DataFile::removeComments()
{
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
rawLines.erase(remove_if(rawLines.begin(), rawLines.end(), [&expression, &what, &flags](const string& line)
{ return boost::regex_search(line.begin(), line.end(), what, expression, flags); }));
}
->
जैसे,[&](double d) -> double { //...