summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2020-03-27 18:30:35 +0200
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2020-04-17 13:36:50 +0300
commit542c11ae63f4afff2e0c84712019c0f9f19ef590 (patch)
treecd311047bb500687a84a79d819c9af5fd9d770e3 /src
parent7751e4be762857b91f7dfa5c10f0f024aebd0079 (diff)
downloadqtlocation-mapboxgl-542c11ae63f4afff2e0c84712019c0f9f19ef590.tar.gz
[core] Fix modernize-use-equals-default errors in header files
As reported by clang-tidy-8.
Diffstat (limited to 'src')
-rw-r--r--src/mbgl/layout/symbol_projection.hpp3
-rw-r--r--src/mbgl/text/collision_feature.hpp3
2 files changed, 3 insertions, 3 deletions
diff --git a/src/mbgl/layout/symbol_projection.hpp b/src/mbgl/layout/symbol_projection.hpp
index e04f8908b6..598073bf55 100644
--- a/src/mbgl/layout/symbol_projection.hpp
+++ b/src/mbgl/layout/symbol_projection.hpp
@@ -30,8 +30,7 @@ namespace mbgl {
{}
PlacedGlyph(PlacedGlyph&& other) noexcept
: point(other.point), angle(other.angle), tileDistance(std::move(other.tileDistance)) {}
- PlacedGlyph(const PlacedGlyph& other)
- : point(other.point), angle(other.angle), tileDistance(other.tileDistance) {}
+ PlacedGlyph(const PlacedGlyph& other) = default;
Point<float> point;
float angle;
optional<TileDistance> tileDistance;
diff --git a/src/mbgl/text/collision_feature.hpp b/src/mbgl/text/collision_feature.hpp
index f9ad659570..2486600832 100644
--- a/src/mbgl/text/collision_feature.hpp
+++ b/src/mbgl/text/collision_feature.hpp
@@ -36,9 +36,10 @@ public:
private:
union Geometry {
+ // NOLINTNEXTLINE(modernize-use-equals-default)
+ Geometry() {}
Geometry(float x1, float y1, float x2, float y2) : box({x1, y1}, {x2, y2}) {}
Geometry(float x, float y, float r) : circle({x, y}, r) {}
- Geometry() {}
mapbox::geometry::box<float> box;
geometry::circle<float> circle;
} geometry;