mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-10 04:07:57 -05:00
Manually tweak source formatting and then re-run clang-format
This commit is contained in:
@ -27,12 +27,10 @@ struct Rectangle {
|
||||
T right;
|
||||
T bottom;
|
||||
|
||||
Rectangle() {
|
||||
}
|
||||
Rectangle() {}
|
||||
|
||||
Rectangle(T left, T top, T right, T bottom)
|
||||
: left(left), top(top), right(right), bottom(bottom) {
|
||||
}
|
||||
: left(left), top(top), right(right), bottom(bottom) {}
|
||||
|
||||
T GetWidth() const {
|
||||
return std::abs(static_cast<typename std::make_signed<T>::type>(right - left));
|
||||
|
Reference in New Issue
Block a user