File tree 1 file changed +0
-5
lines changed
1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -461,7 +461,6 @@ class basic_rect final
461
461
constexpr void offset_height (const value_type dh) noexcept { mRect .h += dh; }
462
462
463
463
[[nodiscard]] constexpr auto x () const noexcept -> value_type { return mRect .x ; }
464
-
465
464
[[nodiscard]] constexpr auto y () const noexcept -> value_type { return mRect .y ; }
466
465
467
466
[[nodiscard]] constexpr auto position () const noexcept -> point_type
@@ -470,7 +469,6 @@ class basic_rect final
470
469
}
471
470
472
471
[[nodiscard]] constexpr auto width () const noexcept -> value_type { return mRect .w ; }
473
-
474
472
[[nodiscard]] constexpr auto height () const noexcept -> value_type { return mRect .h ; }
475
473
476
474
[[nodiscard]] constexpr auto size () const noexcept -> area_type
@@ -479,7 +477,6 @@ class basic_rect final
479
477
}
480
478
481
479
[[nodiscard]] constexpr auto max_x () const noexcept -> value_type { return x () + width (); }
482
-
483
480
[[nodiscard]] constexpr auto max_y () const noexcept -> value_type { return y () + height (); }
484
481
485
482
[[nodiscard]] constexpr auto has_area () const noexcept -> bool
@@ -543,11 +540,9 @@ class basic_rect final
543
540
}
544
541
545
542
[[nodiscard]] auto data () noexcept -> rect_type* { return &mRect ; }
546
-
547
543
[[nodiscard]] auto data () const noexcept -> const rect_type* { return &mRect ; }
548
544
549
545
[[nodiscard]] constexpr auto get () noexcept -> rect_type& { return mRect ; }
550
-
551
546
[[nodiscard]] constexpr auto get () const noexcept -> const rect_type& { return mRect ; }
552
547
553
548
private:
You can’t perform that action at this time.
0 commit comments