Remove extra ;

Removes a extra ; that breaks build with gcc and `-Werror=pedantic`.
This commit is contained in:
Severin Gsponer
2020-02-06 02:18:55 +00:00
parent b1c16d8881
commit 840743f312

View File

@@ -67,7 +67,7 @@ inline std::ostream &write_duration(std::ostream &os, std::chrono::nanoseconds n
os << setw(2) << m.count() << "m:" << setw(2) << s.count() << 's';
os.fill(fill);
return os;
};
}
class BlockProgressScaleWriter
{