summaryrefslogtreecommitdiff
path: root/include/mbgl/util/image.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/mbgl/util/image.hpp')
-rw-r--r--include/mbgl/util/image.hpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/include/mbgl/util/image.hpp b/include/mbgl/util/image.hpp
index 7927b777ea..fde42c7c5e 100644
--- a/include/mbgl/util/image.hpp
+++ b/include/mbgl/util/image.hpp
@@ -21,11 +21,6 @@ public:
height(h),
data(std::make_unique<uint8_t[]>(size())) {}
- Image(size_t w, size_t h, std::unique_ptr<uint8_t[]> data_)
- : width(w),
- height(h),
- data(std::move(data_)) {}
-
size_t stride() const { return width * 4; }
size_t size() const { return width * height * 4; }