diff options
author | Lioncash <mathew1800@gmail.com> | 2020-10-21 22:14:21 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-10-21 22:14:23 -0400 |
commit | ea20b5c970cb261df93743803a227fafd5403d02 (patch) | |
tree | b0f78e977fef8b78169a5c8df2105cd573ad21fa /src/common/math_util.h | |
parent | 1fc61d09d3f03c8a0c502e9ec41d68e3ee1eb46c (diff) |
core: Fix clang build pt.3
Should finally resolve building with clang.
Diffstat (limited to 'src/common/math_util.h')
-rw-r--r-- | src/common/math_util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/math_util.h b/src/common/math_util.h index 7cec80d579..4c38d80405 100644 --- a/src/common/math_util.h +++ b/src/common/math_util.h @@ -27,7 +27,7 @@ struct Rectangle { if constexpr (std::is_floating_point_v<T>) { return std::abs(right - left); } else { - return std::abs(static_cast<std::make_signed_t<T>>(right - left)); + return static_cast<T>(std::abs(static_cast<std::make_signed_t<T>>(right - left))); } } @@ -35,7 +35,7 @@ struct Rectangle { if constexpr (std::is_floating_point_v<T>) { return std::abs(bottom - top); } else { - return std::abs(static_cast<std::make_signed_t<T>>(bottom - top)); + return static_cast<T>(std::abs(static_cast<std::make_signed_t<T>>(bottom - top))); } } |