Code style tweak

This commit is contained in:
Maxime Coste 2019-12-15 10:45:28 +11:00
parent 660378ee3a
commit dfc67dd582

View File

@ -920,10 +920,8 @@ struct WrapHighlighter : Highlighter
ParameterDesc::Flags::None, 0, 0
};
ParametersParser parser(params, param_desc);
ColumnCount max_width{std::numeric_limits<int>::max()};
if (auto width = parser.get_switch("width"))
max_width = str_to_int(*width);
ColumnCount max_width = parser.get_switch("width").map(str_to_int)
.value_or(std::numeric_limits<int>::max());
return std::make_unique<WrapHighlighter>(max_width, (bool)parser.get_switch("word"),
(bool)parser.get_switch("indent"),