summaryrefslogtreecommitdiff
path: root/include/mbgl/util/image.hpp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2015-12-01 23:09:03 +0100
committerKonstantin Käfer <mail@kkaefer.com>2015-12-03 15:38:36 +0100
commit0c351eb523d80fa534bd239b6d5e677e3d5635bb (patch)
tree4669ab13b22b2ba110241e483f3d75bcfcdd30eb /include/mbgl/util/image.hpp
parent478472e501a6aa579174f547277176c19104deb1 (diff)
downloadqtlocation-mapboxgl-0c351eb523d80fa534bd239b6d5e677e3d5635bb.tar.gz
[core] use `default` instead of empty function body
Diffstat (limited to 'include/mbgl/util/image.hpp')
-rw-r--r--include/mbgl/util/image.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mbgl/util/image.hpp b/include/mbgl/util/image.hpp
index 6188f6a404..fde42c7c5e 100644
--- a/include/mbgl/util/image.hpp
+++ b/include/mbgl/util/image.hpp
@@ -14,7 +14,7 @@ enum ImageAlphaMode {
template <ImageAlphaMode Mode>
class Image {
public:
- Image() {}
+ Image() = default;
Image(size_t w, size_t h)
: width(w),