diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-05-10 18:52:46 +0300 |
---|---|---|
committer | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-05-12 18:07:36 +0300 |
commit | 24137c4812d9114fbcea280baf26e3fbbf57af5e (patch) | |
tree | 6cefebeb7baf08c24b65ed100c8eaa0e01e8a68c /src | |
parent | 25b2250c32c1881990718c7de7b87f33ab703e79 (diff) | |
download | qtlocation-mapboxgl-24137c4812d9114fbcea280baf26e3fbbf57af5e.tar.gz |
[tidy] modernize-use-default-member-init
Diffstat (limited to 'src')
-rw-r--r-- | src/mbgl/text/glyph.hpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mbgl/text/glyph.hpp b/src/mbgl/text/glyph.hpp index 458cd688ad..7cfb9aa0d9 100644 --- a/src/mbgl/text/glyph.hpp +++ b/src/mbgl/text/glyph.hpp @@ -58,14 +58,14 @@ enum class WritingModeType : uint8_t; class Shaping { public: - explicit Shaping() : top(0), bottom(0), left(0), right(0) {} + explicit Shaping() = default; explicit Shaping(float x, float y, WritingModeType writingMode_) : top(y), bottom(y), left(x), right(x), writingMode(writingMode_) {} std::vector<PositionedGlyph> positionedGlyphs; - int32_t top; - int32_t bottom; - int32_t left; - int32_t right; + int32_t top = 0; + int32_t bottom = 0; + int32_t left = 0; + int32_t right = 0; WritingModeType writingMode; explicit operator bool() const { return !positionedGlyphs.empty(); } |