summaryrefslogtreecommitdiff
path: root/include/mbgl/style/types.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/style/types.hpp')
-rw-r--r--include/mbgl/style/types.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/mbgl/style/types.hpp b/include/mbgl/style/types.hpp
index 38915db7d8..97a648210a 100644
--- a/include/mbgl/style/types.hpp
+++ b/include/mbgl/style/types.hpp
@@ -18,10 +18,10 @@ struct Faded {
Faded(const T& v) : to(v) {}
T from;
- float fromScale;
+ float fromScale = 0;
T to;
- float toScale;
- float t;
+ float toScale = 0;
+ float t = 0;
};
// -------------------------------------------------------------------------------------------------