c++ formatting

This commit is contained in:
artemp 2017-05-29 10:46:21 +02:00
parent 1c101c3243
commit 3b6f3ff36f

View file

@ -84,7 +84,7 @@ using boost::optional;
constexpr unsigned name2int(const char *str, int off = 0)
{
return !str[off] ? 5381 : (name2int(str, off+1)*33) ^ static_cast<unsigned>(str[off]);
return !str[off] ? 5381 : (name2int(str, off + 1) * 33) ^ static_cast<unsigned>(str[off]);
}
class map_parser : util::noncopyable