clang-format-3.9

This commit is contained in:
Tatsuhiro Tsujikawa 2016-10-15 19:02:54 +09:00
parent a7fcf83bdf
commit aa4ea8889c
51 changed files with 332 additions and 271 deletions

View file

@ -111,8 +111,9 @@ int main(int argc, char** argv)
// the application can call aria2 API to add URI or query progress
// here
auto now = std::chrono::steady_clock::now();
auto count = std::chrono::duration_cast<std::chrono::milliseconds>(
now - start).count();
auto count =
std::chrono::duration_cast<std::chrono::milliseconds>(now - start)
.count();
// Print progress information once per 500ms
if (count >= 500) {
start = now;
@ -130,7 +131,8 @@ int main(int argc, char** argv)
<< "(" << (dh->getTotalLength() > 0
? (100 * dh->getCompletedLength() /
dh->getTotalLength())
: 0) << "%)"
: 0)
<< "%)"
<< " D:" << dh->getDownloadSpeed() / 1024
<< "KiB/s, U:" << dh->getUploadSpeed() / 1024 << "KiB/s"
<< std::endl;