summaryrefslogtreecommitdiff
path: root/src/mbgl/renderer
diff options
context:
space:
mode:
authorBruno de Oliveira Abinader <bruno@mapbox.com>2016-06-12 14:47:01 +0300
committerBruno de Oliveira Abinader <bruno@mapbox.com>2016-06-13 23:32:06 +0300
commit7ac7ac13f5feb3e67546454158e1095e5efaab44 (patch)
tree24011a7058ec056a9e8a8ff874bbb9bb89da59c7 /src/mbgl/renderer
parent4d75001e9af268cca015a46cc0465e39dd4eb971 (diff)
downloadqtlocation-mapboxgl-7ac7ac13f5feb3e67546454158e1095e5efaab44.tar.gz
[tidy] Check modernize-use-default
Ref: http://clang.llvm.org/extra/clang-tidy/checks/modernize-use-default.html
Diffstat (limited to 'src/mbgl/renderer')
-rw-r--r--src/mbgl/renderer/fill_bucket.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mbgl/renderer/fill_bucket.cpp b/src/mbgl/renderer/fill_bucket.cpp
index f45d0ae6ae..df8b01c474 100644
--- a/src/mbgl/renderer/fill_bucket.cpp
+++ b/src/mbgl/renderer/fill_bucket.cpp
@@ -33,8 +33,7 @@ struct GeometryTooLongException : std::exception {};
FillBucket::FillBucket() {
}
-FillBucket::~FillBucket() {
-}
+FillBucket::~FillBucket() = default;
void FillBucket::addGeometry(const GeometryCollection& geometry) {
for (auto& polygon : classifyRings(geometry)) {