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 /indexer/mwm_set.hpp
parent7a6f5e7081467112c6f94e9d9100aadac5f22207 (diff)
Fixed most of “unused var” warnings.
Diffstat (limited to 'indexer/mwm_set.hpp')
-rw-r--r--indexer/mwm_set.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/indexer/mwm_set.hpp b/indexer/mwm_set.hpp
index 9a334316e2..9604f20e97 100644
--- a/indexer/mwm_set.hpp
+++ b/indexer/mwm_set.hpp
@@ -235,15 +235,16 @@ public:
// Called when a map is registered for a first time and can be
// used.
- virtual void OnMapRegistered(platform::LocalCountryFile const & localFile) {}
+ virtual void OnMapRegistered(platform::LocalCountryFile const & /*localFile*/) {}
// Called when a map is updated to a newer version. Feel free to
// treat it as combined OnMapRegistered(newFile) +
// OnMapRegistered(oldFile).
- virtual void OnMapUpdated(platform::LocalCountryFile const & newFile, platform::LocalCountryFile const & oldFile) {}
+ virtual void OnMapUpdated(platform::LocalCountryFile const & /*newFile*/,
+ platform::LocalCountryFile const & /*oldFile*/) {}
// Called when a map is deregistered and can no longer be used.
- virtual void OnMapDeregistered(platform::LocalCountryFile const & localFile) {}
+ virtual void OnMapDeregistered(platform::LocalCountryFile const & /*localFile*/) {}
};
/// Registers a new map.