clang format

This commit is contained in:
Jake Staahl 2021-04-06 20:12:40 -07:00
parent 196208eb05
commit d0b8ded41c

View File

@ -907,7 +907,9 @@ struct FMT_EXTERN_TEMPLATE_API uint128_wrapper {
constexpr uint128_wrapper(uint128_t u) : internal_{u} {}
constexpr uint64_t high() const FMT_NOEXCEPT { return uint64_t(internal_ >> 64); }
constexpr uint64_t high() const FMT_NOEXCEPT {
return uint64_t(internal_ >> 64);
}
constexpr uint64_t low() const FMT_NOEXCEPT { return uint64_t(internal_); }
uint128_wrapper& operator+=(uint64_t n) FMT_NOEXCEPT {
@ -918,8 +920,9 @@ struct FMT_EXTERN_TEMPLATE_API uint128_wrapper {
uint64_t high_;
uint64_t low_;
constexpr uint128_wrapper(uint64_t high, uint64_t low) FMT_NOEXCEPT : high_{high},
low_{low} {}
constexpr uint128_wrapper(uint64_t high, uint64_t low) FMT_NOEXCEPT
: high_{high},
low_{low} {}
constexpr uint64_t high() const FMT_NOEXCEPT { return high_; }
constexpr uint64_t low() const FMT_NOEXCEPT { return low_; }