Merge pull request #28 from svgsponer/hotfix/remove-semicolon

Remove extra semicolon
This commit is contained in:
Pranav
2020-02-05 22:12:16 -06:00
committed by GitHub

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
{