summaryrefslogtreecommitdiff
path: root/src/mbgl/util/rect.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/util/rect.hpp')
-rw-r--r--src/mbgl/util/rect.hpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mbgl/util/rect.hpp b/src/mbgl/util/rect.hpp
index 7bb3214b9b..1dc8cb8af9 100644
--- a/src/mbgl/util/rect.hpp
+++ b/src/mbgl/util/rect.hpp
@@ -9,7 +9,6 @@ struct Rect {
inline Rect(T x_, T y_, T w_, T h_) : x(x_), y(y_), w(w_), h(h_) {}
T x = 0, y = 0;
T w = 0, h = 0;
- T originalW = 0, originalH = 0;
template <typename Number>
inline Rect operator *(Number value) const {