summaryrefslogtreecommitdiff
path: root/src/mbgl/gl/vertex_buffer_resource.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/gl/vertex_buffer_resource.hpp')
-rw-r--r--src/mbgl/gl/vertex_buffer_resource.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mbgl/gl/vertex_buffer_resource.hpp b/src/mbgl/gl/vertex_buffer_resource.hpp
index f9c599c757..cbd73482a3 100644
--- a/src/mbgl/gl/vertex_buffer_resource.hpp
+++ b/src/mbgl/gl/vertex_buffer_resource.hpp
@@ -9,7 +9,7 @@ namespace gl {
class VertexBufferResource : public gfx::VertexBufferResource {
public:
VertexBufferResource(UniqueBuffer&& buffer_, int byteSize_) : buffer(std::move(buffer_)), byteSize(byteSize_) {}
- ~VertexBufferResource();
+ ~VertexBufferResource() override;
UniqueBuffer buffer;
int byteSize;