summaryrefslogtreecommitdiff
path: root/include/mbgl/util/rect.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/util/rect.hpp')
-rw-r--r--include/mbgl/util/rect.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/util/rect.hpp b/include/mbgl/util/rect.hpp
index dedd4afc94..f5c77f93d1 100644
--- a/include/mbgl/util/rect.hpp
+++ b/include/mbgl/util/rect.hpp
@@ -6,7 +6,7 @@ namespace mbgl {
template <typename T>
struct Rect {
inline Rect() {}
- inline Rect(T x, T y, T w, T h) : x(x), y(y), w(w), h(h) {}
+ 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;