From e038e253a469d3c319562ec77397cf6ecfb2e22f Mon Sep 17 00:00:00 2001 From: Varun Talwar Date: Thu, 12 Jan 2017 19:26:43 -0500 Subject: [PATCH] Add "override" for RasterDataSource::loadTileData - fixes warning --- core/src/data/rasterSource.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/data/rasterSource.h b/core/src/data/rasterSource.h index 073b297026..dba6ba147e 100644 --- a/core/src/data/rasterSource.h +++ b/core/src/data/rasterSource.h @@ -34,7 +34,7 @@ class RasterSource : public TileSource { TextureOptions _options, bool genMipmap = false); - void loadTileData(std::shared_ptr _task, TileTaskCb _cb); + void loadTileData(std::shared_ptr _task, TileTaskCb _cb) override; virtual std::shared_ptr createTask(TileID _tile, int _subTask) override;