@@ -58,7 +58,7 @@ namespace vx {
5858 /* *
5959 * @brief Default constructor for Rect.
6060 */
61- constexpr Rect<T> () = default ;
61+ constexpr Rect () = default;
6262
6363 /* *
6464 * @brief Constructor for Rect.
@@ -67,10 +67,10 @@ namespace vx {
6767 * @param _width Width value.
6868 * @param _height Height value.
6969 */
70- constexpr Rect<T> ( T _left,
71- T _top,
72- T _width,
73- T _height ) noexcept
70+ constexpr Rect ( T _left,
71+ T _top,
72+ T _width,
73+ T _height ) noexcept
7474 : m_x1( _left ),
7575 m_y1( _top ),
7676 m_x2( _left + _width - 1 ),
@@ -81,8 +81,8 @@ namespace vx {
8181 * @param _topleft Top left point.
8282 * @param _bottomright Bottom right point.
8383 */
84- constexpr Rect<T> ( Point<T> _topleft,
85- Point<T> _bottomright ) noexcept
84+ constexpr Rect ( Point<T> _topleft,
85+ Point<T> _bottomright ) noexcept
8686 : m_x1( _topleft.x() ),
8787 m_y1( _topleft.y() ),
8888 m_x2( _bottomright.x() ),
@@ -93,8 +93,8 @@ namespace vx {
9393 * @param _point Point value.
9494 * @param _size Size value.
9595 */
96- constexpr Rect<T> ( Point<T> _point,
97- Size<T> _size ) noexcept
96+ constexpr Rect ( Point<T> _point,
97+ Size<T> _size ) noexcept
9898 : m_x1( _point.x() ),
9999 m_y1( _point.y() ),
100100 m_x2( _point.x() + _size.width() - 1 ),
0 commit comments