diff options
-rw-r--r-- | src/utils/rectangle.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/rectangle.hpp b/src/utils/rectangle.hpp index 016e86d3..0a7ca954 100644 --- a/src/utils/rectangle.hpp +++ b/src/utils/rectangle.hpp @@ -75,12 +75,12 @@ namespace usdx } - const Point<T>& get_point1(void) const + Point<T>& get_point1(void) { return point1; } - const Point<T>& get_point2(void) const + Point<T>& get_point2(void) { return point2; } |