Closed HuaYuXiao closed 6 months ago
cd /usr/include/boost
sudo gedit /date_time/special_values_parser.hpp
Remove following from libboost1.71:
static bool likely(const string_type& str)
{
if (!str.empty()) {
switch (str[0]) {
// See string definitions at the end of this class..
case '+':
case '-':
case 'n':
case 'm':
return true;
default:
break;
}
}
return false;
}
Which is new compared to libboost1.65.1