minor formatting cleanup

This commit is contained in:
Maxime Coste 2014-04-27 12:23:46 +01:00
parent 919f121cef
commit 49bc7f8767

View File

@ -711,8 +711,8 @@ private:
for (auto it = ins_pos; it != matches.end(); ++it) for (auto it = ins_pos; it != matches.end(); ++it)
{ {
auto modif_it = std::lower_bound(modifs.begin(), modifs.end(), it->line, auto modif_it = std::lower_bound(modifs.begin(), modifs.end(), it->line,
[](const LineModification& c, const LineCount& l) [](const LineModification& c, const LineCount& l)
{ return c.old_line < l; }); { return c.old_line < l; });
bool erase = false; bool erase = false;
if (modif_it != modifs.begin()) if (modif_it != modifs.begin())
{ {