Fix clang format

This commit is contained in:
James Rowe
2018-03-04 20:59:42 -07:00
parent d8ac3a3435
commit 739f8e5367
2 changed files with 8 additions and 8 deletions

View File

@ -64,8 +64,9 @@ public:
static constexpr u64 slope(183);
static constexpr u64 offset(524879);
static constexpr u64 minimum(631826);
u64 IPCDelayNanoseconds = std::max<u64>(static_cast<u64>(length) * slope + offset, minimum);
return IPCDelayNanoseconds;
u64 ipc_delay_nanoseconds =
std::max<u64>(static_cast<u64>(length) * slope + offset, minimum);
return ipc_delay_nanoseconds;
}
};