Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvng <viktor.govako@gmail.com>2016-12-25 17:20:18 +0300
committervng <viktor.govako@gmail.com>2016-12-25 17:20:18 +0300
commit4b24b9f7c5190c120233558ae425b3bffb9197df (patch)
tree70f8a5fc0552067f1f11fe882bc8cc6d909fdeda /drape/texture.hpp
parent7a6f5e7081467112c6f94e9d9100aadac5f22207 (diff)
Fixed most of “unused var” warnings.
Diffstat (limited to 'drape/texture.hpp')
-rw-r--r--drape/texture.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/drape/texture.hpp b/drape/texture.hpp
index b102f94598..a9b0051bd3 100644
--- a/drape/texture.hpp
+++ b/drape/texture.hpp
@@ -51,7 +51,7 @@ public:
virtual ref_ptr<ResourceInfo> FindResource(Key const & key, bool & newResource) = 0;
virtual void UpdateState() {}
virtual bool HasAsyncRoutines() const { return false; }
- virtual bool HasEnoughSpace(uint32_t newKeysCount) const { return true; }
+ virtual bool HasEnoughSpace(uint32_t /*newKeysCount*/) const { return true; }
using Params = HWTexture::Params;