diff --git a/3party/opening_hours/rules_evaluation.cpp b/3party/opening_hours/rules_evaluation.cpp index 8f54ff7ca8..fb459a164a 100644 --- a/3party/opening_hours/rules_evaluation.cpp +++ b/3party/opening_hours/rules_evaluation.cpp @@ -253,7 +253,7 @@ bool IsActive(WeekdayRange const & range, std::tm const & date) return range.HasWday(wday); } -bool IsActive(Holiday const & holiday, std::tm const & date) +bool IsActive(Holiday const & /* holiday */, std::tm const & /* date */) { return false; } diff --git a/base/base_tests/lru_cache_tests.cpp b/base/base_tests/lru_cache_tests.cpp index 41ca034bda..f2e46fa2cf 100644 --- a/base/base_tests/lru_cache_tests.cpp +++ b/base/base_tests/lru_cache_tests.cpp @@ -126,7 +126,7 @@ UNIT_TEST(LruCacheSmokeTest) using Value = int; { - LruCacheTest cache(1 /* maxCacheSize */, [](Key k, Value & v) { v = 1; } /* loader */); + LruCacheTest cache(1 /* maxCacheSize */, [](Key, Value & v) { v = 1; } /* loader */); TEST_EQUAL(cache.GetValue(1), 1, ()); TEST_EQUAL(cache.GetValue(2), 1, ()); TEST_EQUAL(cache.GetValue(3), 1, ()); diff --git a/base/internal/message.hpp b/base/internal/message.hpp index c8191519d0..3555dda249 100644 --- a/base/internal/message.hpp +++ b/base/internal/message.hpp @@ -144,7 +144,7 @@ std::string DebugPrint(std::optional const & p) return "nullopt"; } -std::string inline DebugPrint(std::nullopt_t const & p) +std::string inline DebugPrint(std::nullopt_t const &) { return "nullopt"; } diff --git a/base/pprof.cpp b/base/pprof.cpp index c33058cef1..129cee4372 100644 --- a/base/pprof.cpp +++ b/base/pprof.cpp @@ -12,6 +12,8 @@ PProf::PProf(std::string const & path) { #if defined(USE_PPROF) ProfilerStart(path.c_str()); +#else + UNUSED_VALUE(path); #endif } diff --git a/base/visitor.hpp b/base/visitor.hpp index e73eaf4602..563081b0ef 100644 --- a/base/visitor.hpp +++ b/base/visitor.hpp @@ -1,5 +1,7 @@ #pragma once +#include "base/macros.hpp" + #include #include @@ -42,11 +44,13 @@ private: template \ void Visit(Visitor & visitor) \ { \ + UNUSED_VALUE(visitor); \ __VA_ARGS__; \ } \ template \ void Visit(Visitor & visitor) const \ { \ + UNUSED_VALUE(visitor); \ __VA_ARGS__; \ } diff --git a/cmake/OmimConfig.cmake b/cmake/OmimConfig.cmake index a8e04c1de9..3b882afe6d 100644 --- a/cmake/OmimConfig.cmake +++ b/cmake/OmimConfig.cmake @@ -1,7 +1,6 @@ # Flags for all set(OMIM_WARNING_FLAGS $<$>:-Wall -Wextra -Wpedantic> - $<$>:-Wno-unused-parameter> # We have a lot of functions with unused parameters ) set(3PARTY_INCLUDE_DIRS "${OMIM_ROOT}/3party/boost") set(OMIM_DATA_DIR "${OMIM_ROOT}/data") diff --git a/coding/coding_tests/string_utf8_multilang_tests.cpp b/coding/coding_tests/string_utf8_multilang_tests.cpp index 12d1945a94..8c2dd82bb9 100644 --- a/coding/coding_tests/string_utf8_multilang_tests.cpp +++ b/coding/coding_tests/string_utf8_multilang_tests.cpp @@ -81,7 +81,7 @@ UNIT_TEST(MultilangString_ForEach) size_t index = 0; vector const expected = {"default", "en", "ru"}; vector actual; - s.ForEach([&index, &actual](char lang, string_view) + s.ForEach([&index, &actual](char, string_view) { actual.push_back(gArr[index].m_lang); ++index; diff --git a/coding/coding_tests/xml_parser_tests.cpp b/coding/coding_tests/xml_parser_tests.cpp index 593a95247f..86b57f077a 100644 --- a/coding/coding_tests/xml_parser_tests.cpp +++ b/coding/coding_tests/xml_parser_tests.cpp @@ -53,7 +53,7 @@ public: using PairsOfStrings = std::vector>; using Strings = std::vector; - void CharData(std::string const & ch) {} + void CharData(std::string const & /* ch */) {} void AddAttr(std::string key, std::string value) { diff --git a/drape/drape_tests/batcher_tests.cpp b/drape/drape_tests/batcher_tests.cpp index 29f21e5b03..831817fe89 100644 --- a/drape/drape_tests/batcher_tests.cpp +++ b/drape/drape_tests/batcher_tests.cpp @@ -41,8 +41,8 @@ struct VAOAcceptor class TestExtension : public dp::BaseRenderStateExtension { public: - bool Less(ref_ptr other) const override { return false; } - bool Equal(ref_ptr other) const override { return true; } + bool Less(ref_ptr) const override { return false; } + bool Equal(ref_ptr) const override { return true; } }; class BatcherExpectations diff --git a/drape/drape_tests/font_texture_tests.cpp b/drape/drape_tests/font_texture_tests.cpp index 5382406d8d..d9c0ed7ef7 100644 --- a/drape/drape_tests/font_texture_tests.cpp +++ b/drape/drape_tests/font_texture_tests.cpp @@ -34,7 +34,7 @@ class UploadedRender public: explicit UploadedRender(QPoint const & pen) : m_pen(pen) {} - void glMemoryToQImage(int x, int y, int w, int h, glConst f, glConst t, void const * memory) + void glMemoryToQImage(int x, int /* y */, int w, int h, glConst f, glConst t, void const * memory) { TEST(f == gl_const::GLAlpha || f == gl_const::GLAlpha8 || f == gl_const::GLRed, ()); TEST(t == gl_const::GLUnsignedByteType, ()); diff --git a/drape/drape_tests/testing_graphics_context.hpp b/drape/drape_tests/testing_graphics_context.hpp index 7270f02086..708a2d46eb 100644 --- a/drape/drape_tests/testing_graphics_context.hpp +++ b/drape/drape_tests/testing_graphics_context.hpp @@ -11,29 +11,28 @@ public: void Present() override {} void MakeCurrent() override {} - void SetFramebuffer(ref_ptr framebuffer) override {} - void ForgetFramebuffer(ref_ptr framebuffer) override {} - void ApplyFramebuffer(std::string const & framebufferLabel) override {} + void SetFramebuffer(ref_ptr) override {} + void ForgetFramebuffer(ref_ptr) override {} + void ApplyFramebuffer(std::string const &) override {} - void Init(dp::ApiVersion apiVersion) override {} + void Init(dp::ApiVersion) override {} dp::ApiVersion GetApiVersion() const override { return m_apiVersion; } std::string GetRendererName() const override { return {}; } std::string GetRendererVersion() const override { return {}; } - void PushDebugLabel(std::string const & label) override {} + void PushDebugLabel(std::string const &) override {} void PopDebugLabel() override {} - void SetClearColor(dp::Color const & color) override {} - void Clear(uint32_t clearBits, uint32_t storeBits) override {} + void SetClearColor(dp::Color const &) override {} + void Clear(uint32_t, uint32_t) override {} void Flush() override {} - void SetViewport(uint32_t x, uint32_t y, uint32_t w, uint32_t h) override {} - void SetDepthTestEnabled(bool enabled) override {} - void SetDepthTestFunction(dp::TestFunction depthFunction) override {} - void SetStencilTestEnabled(bool enabled) override {} - void SetStencilFunction(dp::StencilFace face, dp::TestFunction stencilFunction) override {} - void SetStencilActions(dp::StencilFace face, dp::StencilAction stencilFailAction, - dp::StencilAction depthFailAction, dp::StencilAction passAction) override {} - void SetStencilReferenceValue(uint32_t stencilReferenceValue) override {} + void SetViewport(uint32_t, uint32_t, uint32_t, uint32_t) override {} + void SetDepthTestEnabled(bool) override {} + void SetDepthTestFunction(dp::TestFunction) override {} + void SetStencilTestEnabled(bool) override {} + void SetStencilFunction(dp::StencilFace, dp::TestFunction) override {} + void SetStencilActions(dp::StencilFace, dp::StencilAction, dp::StencilAction, dp::StencilAction) override {} + void SetStencilReferenceValue(uint32_t) override {} private: dp::ApiVersion m_apiVersion = dp::ApiVersion::OpenGLES2; diff --git a/drape/drape_tests/uniform_value_tests.cpp b/drape/drape_tests/uniform_value_tests.cpp index 55b5d1d9d9..34e6ea25ff 100644 --- a/drape/drape_tests/uniform_value_tests.cpp +++ b/drape/drape_tests/uniform_value_tests.cpp @@ -32,7 +32,7 @@ public: , m_size(size) {} - void Compare(int32_t id, T const * memory) + void Compare(int32_t /* id */, T const * memory) { m_result = memcmp(m_memory, memory, m_size) == 0; } @@ -48,7 +48,7 @@ private: uint32_t m_size; }; -void mock_glGetActiveUniform(uint32_t programID, uint32_t index, int32_t * size, +void mock_glGetActiveUniform(uint32_t /* programID */, uint32_t index, int32_t * size, glConst * type, std::string & name) { *size = 1; diff --git a/drape/framebuffer.hpp b/drape/framebuffer.hpp index 05729641ec..709d0e880a 100644 --- a/drape/framebuffer.hpp +++ b/drape/framebuffer.hpp @@ -13,7 +13,7 @@ namespace dp class FramebufferTexture : public Texture { public: - ref_ptr FindResource(Key const & key, bool & newResource) override { return nullptr; } + ref_ptr FindResource(Key const &, bool &) override { return nullptr; } }; using FramebufferFallback = std::function; diff --git a/drape/graphics_context_factory.hpp b/drape/graphics_context_factory.hpp index 971d500601..2b5ef39e0a 100644 --- a/drape/graphics_context_factory.hpp +++ b/drape/graphics_context_factory.hpp @@ -18,8 +18,8 @@ public: virtual GraphicsContext * GetResourcesUploadContext() = 0; virtual bool IsDrawContextCreated() const { return false; } virtual bool IsUploadContextCreated() const { return false; } - virtual void WaitForInitialization(dp::GraphicsContext * context) {} - virtual void SetPresentAvailable(bool available) {} + virtual void WaitForInitialization(dp::GraphicsContext * /* context */) {} + virtual void SetPresentAvailable(bool /* available */) {} }; class ThreadSafeFactory : public GraphicsContextFactory diff --git a/drape/hw_texture.cpp b/drape/hw_texture.cpp index 560e8978f3..54bdd19b1d 100644 --- a/drape/hw_texture.cpp +++ b/drape/hw_texture.cpp @@ -206,7 +206,7 @@ void OpenGLHWTexture::Create(ref_ptr context, Params const GLFunctions::glFlush(); } -void OpenGLHWTexture::UploadData(ref_ptr context, uint32_t x, uint32_t y, +void OpenGLHWTexture::UploadData(ref_ptr, uint32_t x, uint32_t y, uint32_t width, uint32_t height, ref_ptr data) { ASSERT(Validate(), ()); diff --git a/drape/oglcontext.hpp b/drape/oglcontext.hpp index deca3687ac..e35ea3d8a7 100644 --- a/drape/oglcontext.hpp +++ b/drape/oglcontext.hpp @@ -11,11 +11,11 @@ public: ApiVersion GetApiVersion() const override; std::string GetRendererName() const override; std::string GetRendererVersion() const override; - void ForgetFramebuffer(ref_ptr framebuffer) override {} - void ApplyFramebuffer(std::string const & framebufferLabel) override {} + void ForgetFramebuffer(ref_ptr) override {} + void ApplyFramebuffer(std::string const &) override {} void DebugSynchronizeWithCPU() override; - void PushDebugLabel(std::string const & label) override {} + void PushDebugLabel(std::string const &) override {} void PopDebugLabel() override {} void SetClearColor(dp::Color const & color) override; @@ -30,6 +30,6 @@ public: StencilAction passAction) override; // Do not use custom stencil reference value in OpenGL rendering. - void SetStencilReferenceValue(uint32_t stencilReferenceValue) override {} + void SetStencilReferenceValue(uint32_t) override {} }; } // namespace dp diff --git a/drape/render_state.cpp b/drape/render_state.cpp index 5c09fd8078..cb34e942ae 100644 --- a/drape/render_state.cpp +++ b/drape/render_state.cpp @@ -41,7 +41,7 @@ Blending::Blending(bool isEnabled) : m_isEnabled(isEnabled) {} -void Blending::Apply(ref_ptr context, ref_ptr program) const +void Blending::Apply(ref_ptr context, ref_ptr) const { // For Metal Rendering these settings must be set in the pipeline state. auto const apiVersion = context->GetApiVersion(); diff --git a/drape/texture.hpp b/drape/texture.hpp index 094c3513a4..1617df0f39 100644 --- a/drape/texture.hpp +++ b/drape/texture.hpp @@ -48,7 +48,7 @@ public: virtual ~Texture() = default; virtual ref_ptr FindResource(Key const & key, bool & newResource) = 0; - virtual void UpdateState(ref_ptr context) {} + virtual void UpdateState(ref_ptr /* context */) {} virtual bool HasEnoughSpace(uint32_t /* newKeysCount */) const { return true; } using Params = HWTexture::Params; diff --git a/drape/vertex_array_buffer.hpp b/drape/vertex_array_buffer.hpp index 34a7277049..c52c928a13 100644 --- a/drape/vertex_array_buffer.hpp +++ b/drape/vertex_array_buffer.hpp @@ -37,7 +37,7 @@ public: virtual void RenderRange(ref_ptr context, bool drawAsLine, IndicesRange const & range) = 0; - virtual void AddBindingInfo(dp::BindingInfo const & bindingInfo) {} + virtual void AddBindingInfo(dp::BindingInfo const & /* bindingInfo */) {} }; namespace metal diff --git a/drape/vulkan/vulkan_base_context.cpp b/drape/vulkan/vulkan_base_context.cpp index d2cd291dd8..eb8196c669 100644 --- a/drape/vulkan/vulkan_base_context.cpp +++ b/drape/vulkan/vulkan_base_context.cpp @@ -326,7 +326,7 @@ void VulkanBaseContext::ForgetFramebuffer(ref_ptr framebuff DestroyRenderPassAndFramebuffer(framebuffer); } -void VulkanBaseContext::ApplyFramebuffer(std::string const & framebufferLabel) +void VulkanBaseContext::ApplyFramebuffer(std::string const &) { vkCmdSetStencilReference(m_renderingCommandBuffers[m_inflightFrameIndex], VK_STENCIL_FRONT_AND_BACK, m_stencilReferenceValue); diff --git a/drape/vulkan/vulkan_base_context.hpp b/drape/vulkan/vulkan_base_context.hpp index ec81da114a..df85364724 100644 --- a/drape/vulkan/vulkan_base_context.hpp +++ b/drape/vulkan/vulkan_base_context.hpp @@ -53,7 +53,7 @@ public: bool HasPartialTextureUpdates() const override; void DebugSynchronizeWithCPU() override {} - void PushDebugLabel(std::string const & label) override {} + void PushDebugLabel(std::string const &) override {} void PopDebugLabel() override {} void SetClearColor(Color const & color) override; diff --git a/drape/vulkan/vulkan_mesh_object_impl.cpp b/drape/vulkan/vulkan_mesh_object_impl.cpp index 4edd0ee0a4..7d1ba470d6 100644 --- a/drape/vulkan/vulkan_mesh_object_impl.cpp +++ b/drape/vulkan/vulkan_mesh_object_impl.cpp @@ -37,7 +37,7 @@ public: , m_descriptorUpdater(objectManager) {} - void Build(ref_ptr context, ref_ptr program) override + void Build(ref_ptr, ref_ptr) override { m_geometryBuffers.resize(m_mesh->m_buffers.size()); m_bindingInfoCount = static_cast(m_mesh->m_buffers.size()); @@ -165,7 +165,7 @@ public: vkCmdDraw(commandBuffer, verticesCount, 1, 0, 0); } - void Bind(ref_ptr program) override {} + void Bind(ref_ptr) override {} void Unbind() override {} private: diff --git a/drape/vulkan/vulkan_texture.cpp b/drape/vulkan/vulkan_texture.cpp index 8a2a58c750..17e02b2570 100644 --- a/drape/vulkan/vulkan_texture.cpp +++ b/drape/vulkan/vulkan_texture.cpp @@ -80,7 +80,7 @@ VkBufferImageCopy BufferCopyRegion(uint32_t x, uint32_t y, uint32_t width, uint3 } } // namespace -drape_ptr VulkanTextureAllocator::CreateTexture(ref_ptr context) +drape_ptr VulkanTextureAllocator::CreateTexture(ref_ptr) { return make_unique_dp(make_ref(this)); } diff --git a/drape/vulkan/vulkan_vertex_array_buffer_impl.cpp b/drape/vulkan/vulkan_vertex_array_buffer_impl.cpp index 93c0d3d3e6..eb070cfea4 100644 --- a/drape/vulkan/vulkan_vertex_array_buffer_impl.cpp +++ b/drape/vulkan/vulkan_vertex_array_buffer_impl.cpp @@ -45,7 +45,7 @@ public: bool Bind() override { return true; } void Unbind() override {} - void BindBuffers(dp::BuffersMap const & buffers) const override {} + void BindBuffers(dp::BuffersMap const &) const override {} void RenderRange(ref_ptr context, bool drawAsLine, IndicesRange const & range) override diff --git a/drape_frontend/animation/animation.hpp b/drape_frontend/animation/animation.hpp index 4aac4bcbdb..fa0e84332b 100644 --- a/drape_frontend/animation/animation.hpp +++ b/drape_frontend/animation/animation.hpp @@ -87,7 +87,7 @@ public: virtual ~Animation() = default; - virtual void Init(ScreenBase const & screen, TPropertyCache const & properties) {} + virtual void Init(ScreenBase const & /* screen */, TPropertyCache const & /* properties */) {} virtual void OnStart() { if (m_onStartAction != nullptr) m_onStartAction(this); } virtual void OnFinish() { if (m_onFinishAction != nullptr) m_onFinishAction(this); } virtual void Interrupt() { if (m_onInterruptAction != nullptr) m_onInterruptAction(this); } diff --git a/drape_frontend/animation/arrow_animation.cpp b/drape_frontend/animation/arrow_animation.cpp index b54d1cdb45..c1acfe9b92 100644 --- a/drape_frontend/animation/arrow_animation.cpp +++ b/drape_frontend/animation/arrow_animation.cpp @@ -18,7 +18,7 @@ ArrowAnimation::ArrowAnimation(m2::PointD const & startPos, m2::PointD const & e m_properties.insert(Animation::ObjectProperty::Angle); } -void ArrowAnimation::Init(ScreenBase const & screen, TPropertyCache const & properties) +void ArrowAnimation::Init(ScreenBase const &, TPropertyCache const & properties) { PropertyValue value; double minDuration; @@ -64,7 +64,7 @@ bool ArrowAnimation::HasObject(Object object) const return object == Animation::Object::MyPositionArrow; } -Animation::TObjectProperties const & ArrowAnimation::GetProperties(Object object) const +Animation::TObjectProperties const & ArrowAnimation::GetProperties(Object) const { return m_properties; } diff --git a/drape_frontend/animation/follow_animation.cpp b/drape_frontend/animation/follow_animation.cpp index 13ee9b9812..17a37fa9dc 100644 --- a/drape_frontend/animation/follow_animation.cpp +++ b/drape_frontend/animation/follow_animation.cpp @@ -180,7 +180,7 @@ bool MapFollowAnimation::GetTargetProperty(Object object, ObjectProperty propert return GetProperty(object, property, true /* targetValue */, value); } -bool MapFollowAnimation::GetProperty(Object object, ObjectProperty property, bool targetValue, PropertyValue & value) const +bool MapFollowAnimation::GetProperty(Object, ObjectProperty property, bool targetValue, PropertyValue & value) const { if (property == Animation::ObjectProperty::Position) { diff --git a/drape_frontend/animation/sequence_animation.cpp b/drape_frontend/animation/sequence_animation.cpp index 6bdda26189..5f34d0065d 100644 --- a/drape_frontend/animation/sequence_animation.cpp +++ b/drape_frontend/animation/sequence_animation.cpp @@ -58,12 +58,12 @@ bool SequenceAnimation::HasTargetProperty(Object object, ObjectProperty property return false; } -void SequenceAnimation::SetMaxDuration(double maxDuration) +void SequenceAnimation::SetMaxDuration(double) { ASSERT(false, ("Not implemented")); } -void SequenceAnimation::SetMinDuration(double minDuration) +void SequenceAnimation::SetMinDuration(double) { ASSERT(false, ("Not implemented")); } diff --git a/drape_frontend/animation_utils.cpp b/drape_frontend/animation_utils.cpp index 09ad468501..deeb0845b0 100644 --- a/drape_frontend/animation_utils.cpp +++ b/drape_frontend/animation_utils.cpp @@ -7,7 +7,7 @@ namespace df { -bool IsAnimationAllowed(double duration, ScreenBase const & screen) +bool IsAnimationAllowed(double duration, ScreenBase const &) { return duration > 0.0 && duration <= kMaxAnimationTimeSec; } diff --git a/drape_frontend/arrow3d.cpp b/drape_frontend/arrow3d.cpp index a3270ee9c2..b1c3ae1f1d 100644 --- a/drape_frontend/arrow3d.cpp +++ b/drape_frontend/arrow3d.cpp @@ -69,12 +69,12 @@ void * FileOpen(char const * path, void * userData) return userData; } -void FileClose(void * file, void * userData) +void FileClose(void * /* file */, void * /* userData */) { // Do nothing. } -size_t FileRead(void * file, void * dst, size_t bytes, void * userData) +size_t FileRead(void * /* file */, void * dst, size_t bytes, void * userData) { auto reader = static_cast> *>(userData); CHECK(reader != nullptr, ()); @@ -91,7 +91,7 @@ size_t FileRead(void * file, void * dst, size_t bytes, void * userData) return static_cast(reader->Pos() - p); } -unsigned long FileSize(void * file, void * userData) +unsigned long FileSize(void * /* file */, void * userData) { auto reader = static_cast> *>(userData); CHECK(reader != nullptr, ()); diff --git a/drape_frontend/circles_pack_shape.cpp b/drape_frontend/circles_pack_shape.cpp index 71eeceabda..060cf5cc6d 100644 --- a/drape_frontend/circles_pack_shape.cpp +++ b/drape_frontend/circles_pack_shape.cpp @@ -112,6 +112,7 @@ void CirclesPackHandle::GetPixelShape(ScreenBase const & screen, bool perspectiv { UNUSED_VALUE(screen); UNUSED_VALUE(perspective); + UNUSED_VALUE(rects); } void CirclesPackHandle::SetPoint(size_t index, m2::PointD const & position, float radius, diff --git a/drape_frontend/debug_rect_renderer.cpp b/drape_frontend/debug_rect_renderer.cpp index 4a8a8fdfb8..390e64dd22 100644 --- a/drape_frontend/debug_rect_renderer.cpp +++ b/drape_frontend/debug_rect_renderer.cpp @@ -28,7 +28,7 @@ drape_ptr CreateMesh(ref_ptr context, ref_p } } // namespace -DebugRectRenderer::DebugRectRenderer(ref_ptr context, ref_ptr program, +DebugRectRenderer::DebugRectRenderer(ref_ptr, ref_ptr program, ref_ptr paramsSetter) : m_program(program) , m_paramsSetter(paramsSetter) diff --git a/drape_frontend/drape_frontend_tests/user_event_stream_tests.cpp b/drape_frontend/drape_frontend_tests/user_event_stream_tests.cpp index 2a5eb71dec..8fb3a4cec8 100644 --- a/drape_frontend/drape_frontend_tests/user_event_stream_tests.cpp +++ b/drape_frontend/drape_frontend_tests/user_event_stream_tests.cpp @@ -23,25 +23,25 @@ public: m_stream.SetTestBridge(std::bind(&UserEventStreamTest::TestBridge, this, _1)); } - void OnTap(m2::PointD const & pt, bool isLong) override {} - void OnForceTap(m2::PointD const & pt) override {} - void OnDoubleTap(m2::PointD const & pt) override {} + void OnTap(m2::PointD const & /* pt */, bool /* isLong */) override {} + void OnForceTap(m2::PointD const & /* pt */) override {} + void OnDoubleTap(m2::PointD const & /* pt */) override {} void OnTwoFingersTap() override {} - bool OnSingleTouchFiltrate(m2::PointD const & pt, df::TouchEvent::ETouchType type) override { return m_filtrate; } + bool OnSingleTouchFiltrate(m2::PointD const & /* pt */, df::TouchEvent::ETouchType /* type */) override { return m_filtrate; } void OnDragStarted() override {} void OnDragEnded(m2::PointD const & /* distance */) override {} void OnRotated() override {} - void OnScrolled(m2::PointD const & distance) override {} + void OnScrolled(m2::PointD const & /* distance */) override {} void OnScaleStarted() override {} - void CorrectScalePoint(m2::PointD & pt) const override {} - void CorrectScalePoint(m2::PointD & pt1, m2::PointD & pt2) const override {} - void CorrectGlobalScalePoint(m2::PointD & pt) const override {} + void CorrectScalePoint(m2::PointD & /* pt */) const override {} + void CorrectScalePoint(m2::PointD & /* pt1 */, m2::PointD & /* pt2 */) const override {} + void CorrectGlobalScalePoint(m2::PointD & /* pt */) const override {} void OnScaleEnded() override {} - void OnTouchMapAction(df::TouchEvent::ETouchType touchType, bool isMapTouch) override {} + void OnTouchMapAction(df::TouchEvent::ETouchType /* touchType */, bool /* isMapTouch */) override {} void OnAnimatedScaleEnded() override {} - bool OnNewVisibleViewport(m2::RectD const & oldViewport, m2::RectD const & newViewport, - bool needOffset, m2::PointD & gOffset) override + bool OnNewVisibleViewport(m2::RectD const & /* oldViewport */, m2::RectD const & /* newViewport */, + bool /* needOffset */, m2::PointD & /* gOffset */) override { return false; } diff --git a/drape_frontend/frame_values.hpp b/drape_frontend/frame_values.hpp index e72ee243ed..4b0a92cdc2 100644 --- a/drape_frontend/frame_values.hpp +++ b/drape_frontend/frame_values.hpp @@ -9,25 +9,29 @@ namespace df { -#define DECLARE_SETTER(name, field) \ -template struct Check##name \ -{ \ -private: \ - static void Detect(...); \ - template static decltype(std::declval().field) Detect(U const &); \ -public: \ - static constexpr bool Value = !std::is_same()))>::value; \ -}; \ -template \ -std::enable_if_t::Value> \ -name(ParamsType & params) const \ -{ \ - params.field = field; \ -} \ -template \ -std::enable_if_t::Value> \ -name(ParamsType & params) const {} - +#define DECLARE_SETTER(name, field) \ + template \ + struct Check##name \ + { \ + private: \ + static void Detect(...); \ + template \ + static decltype(std::declval().field) Detect(U const &); \ + \ + public: \ + static constexpr bool Value = !std::is_same()))>::value; \ + }; \ + \ + template \ + std::enable_if_t::Value> name(ParamsType & params) const \ + { \ + params.field = field; \ + } \ + \ + template \ + std::enable_if_t::Value> name(ParamsType &) const \ + { \ + } struct FrameValues { diff --git a/drape_frontend/gui/debug_label.cpp b/drape_frontend/gui/debug_label.cpp index 1101a1fb93..12065ce95b 100644 --- a/drape_frontend/gui/debug_label.cpp +++ b/drape_frontend/gui/debug_label.cpp @@ -44,8 +44,8 @@ void AddSymbols(std::string const & str, std::set & symbols) symbols.insert(str[i]); } -void DebugInfoLabels::AddLabel(ref_ptr tex, std::string const & caption, - TUpdateDebugLabelFn const & onUpdateFn) +void DebugInfoLabels::AddLabel(ref_ptr, std::string const & caption, + TUpdateDebugLabelFn const &) { std::string alphabet; std::set symbols; diff --git a/drape_frontend/gui/ruler.cpp b/drape_frontend/gui/ruler.cpp index 9ca591410b..a1743d5c19 100644 --- a/drape_frontend/gui/ruler.cpp +++ b/drape_frontend/gui/ruler.cpp @@ -114,7 +114,7 @@ public: {} private: - void UpdateImpl(ScreenBase const & screen, RulerHelper const & helper) override + void UpdateImpl(ScreenBase const &, RulerHelper const & helper) override { if (!IsVisible()) return; diff --git a/drape_frontend/gui/shape.cpp b/drape_frontend/gui/shape.cpp index 8fa2db65dc..ce6405e2e7 100644 --- a/drape_frontend/gui/shape.cpp +++ b/drape_frontend/gui/shape.cpp @@ -19,7 +19,7 @@ Handle::Handle(uint32_t id, dp::Anchor anchor, m2::PointF const & pivot, m2::Poi , m_size(size) {} -bool Handle::Update(ScreenBase const & screen) +bool Handle::Update(ScreenBase const &) { using namespace glsl; @@ -40,7 +40,7 @@ bool Handle::IndexesRequired() const return false; } -m2::RectD Handle::GetPixelRect(ScreenBase const & screen, bool perspective) const +m2::RectD Handle::GetPixelRect(ScreenBase const &, bool perspective) const { // There is no need to check intersection of gui elements. UNUSED_VALUE(perspective); diff --git a/drape_frontend/kinetic_scroller.cpp b/drape_frontend/kinetic_scroller.cpp index c3f1008dba..51b9ca9671 100644 --- a/drape_frontend/kinetic_scroller.cpp +++ b/drape_frontend/kinetic_scroller.cpp @@ -72,7 +72,7 @@ public: m_duration = maxDuration; } - void SetMinDuration(double minDuration) override {} + void SetMinDuration(double /* minDuration */) override {} double GetMaxDuration() const override { return Animation::kInvalidAnimationDuration; } double GetMinDuration() const override { return Animation::kInvalidAnimationDuration; } diff --git a/drape_frontend/line_shape.cpp b/drape_frontend/line_shape.cpp index c76c236082..1c9b0fc3a9 100644 --- a/drape_frontend/line_shape.cpp +++ b/drape_frontend/line_shape.cpp @@ -61,7 +61,7 @@ template class BaseLineBuilder : public LineShapeInfo { public: - BaseLineBuilder(BaseBuilderParams const & params, size_t geomsSize, size_t joinsSize) + BaseLineBuilder(BaseBuilderParams const & params, size_t geomsSize, size_t /* joinsSize */) : m_params(params) , m_colorCoord(glsl::ToVec2(params.m_color.GetTexRect().Center())) { @@ -339,7 +339,7 @@ LineShape::LineShape(m2::SharedSpline const & spline, LineViewParams const & par } template -void LineShape::Construct(TBuilder & builder) const +void LineShape::Construct(TBuilder & /* builder */) const { ASSERT(false, ("No implementation")); } @@ -442,7 +442,7 @@ void LineShape::Construct(SolidLineBuilder & builder) const bool const generateJoins = builder.GetHalfWidth() > 2.5f; ForEachSplineSection([&](glsl::vec2 const & p1, glsl::vec2 const & p2, - glsl::vec2 const & tangent, double, + glsl::vec2 const & /* tangent */, double, glsl::vec2 const & leftNormal, glsl::vec2 const & rightNormal, int flag) { diff --git a/drape_frontend/my_position_controller.cpp b/drape_frontend/my_position_controller.cpp index 4b496bcb6d..d453c7fbdf 100644 --- a/drape_frontend/my_position_controller.cpp +++ b/drape_frontend/my_position_controller.cpp @@ -854,7 +854,7 @@ void MyPositionController::ActivateRouting(int zoomLevel, bool enableAutoZoom, b ChangeMode(location::FollowAndRotate); ChangeModelView(m_position, m_isDirectionAssigned ? m_drawDirection : 0.0, GetRoutingRotationPixelCenter(), zoomLevel, - [this](ref_ptr anim) + [this](const ref_ptr&) { UpdateViewport(kDoNotChangeZoom); }); diff --git a/drape_frontend/selection_shape.cpp b/drape_frontend/selection_shape.cpp index 712a29a27f..5e4e30b50a 100644 --- a/drape_frontend/selection_shape.cpp +++ b/drape_frontend/selection_shape.cpp @@ -68,7 +68,7 @@ bool SelectionShape::SelectionShape::IsVisible() const return (state == ShowHideAnimation::STATE_VISIBLE || state == ShowHideAnimation::STATE_SHOW_DIRECTION); } -std::optional SelectionShape::GetPixelPosition(ScreenBase const & screen, int zoomLevel) const +std::optional SelectionShape::GetPixelPosition(ScreenBase const & screen, int) const { if (!IsVisible()) return {}; diff --git a/drape_frontend/text_handle.cpp b/drape_frontend/text_handle.cpp index 14b973a373..4c26bf72e5 100644 --- a/drape_frontend/text_handle.cpp +++ b/drape_frontend/text_handle.cpp @@ -57,7 +57,7 @@ void TextHandle::GetAttributeMutation(ref_ptr mutato m_isLastVisible = isVisible; } -bool TextHandle::Update(ScreenBase const & screen) +bool TextHandle::Update(ScreenBase const &) { if (!m_glyphsReady) m_glyphsReady = m_textureManager->AreGlyphsReady(m_text); diff --git a/drape_frontend/text_layout.cpp b/drape_frontend/text_layout.cpp index 212e6eb780..a0f7fa0469 100644 --- a/drape_frontend/text_layout.cpp +++ b/drape_frontend/text_layout.cpp @@ -23,7 +23,7 @@ public: , m_buffer(buffer) {} - void SetPenPosition(glsl::vec2 const & penOffset) {} + void SetPenPosition(glsl::vec2 const & /* penOffset */) {} void operator() (dp::TextureManager::GlyphRegion const & glyph) { @@ -104,7 +104,7 @@ public: , m_buffer(buffer) {} - void SetPenPosition(glsl::vec2 const & penOffset) {} + void SetPenPosition(glsl::vec2 const & /* penOffset */) {} void operator() (dp::TextureManager::GlyphRegion const & glyph) { diff --git a/drape_frontend/text_shape.cpp b/drape_frontend/text_shape.cpp index 6a230322c4..1cd9f42160 100644 --- a/drape_frontend/text_shape.cpp +++ b/drape_frontend/text_shape.cpp @@ -296,11 +296,9 @@ void TextShape::DrawSubString(ref_ptr context, StraightText DrawSubStringOutlined(context, layout, font, baseOffset, batcher, textures, isPrimary, isOptional); } -void TextShape::DrawSubStringPlain(ref_ptr context, - StraightTextLayout const & layout, dp::FontDecl const & font, - glm::vec2 const & baseOffset, ref_ptr batcher, - ref_ptr textures, bool isPrimary, - bool isOptional) const +void TextShape::DrawSubStringPlain(ref_ptr context, StraightTextLayout const & layout, + dp::FontDecl const & font, glm::vec2 const &, ref_ptr batcher, + ref_ptr textures, bool isPrimary, bool isOptional) const { gpu::TTextStaticVertexBuffer staticBuffer; gpu::TTextDynamicVertexBuffer dynamicBuffer; @@ -359,11 +357,9 @@ void TextShape::DrawSubStringPlain(ref_ptr context, batcher->InsertListOfStrip(context, state, make_ref(&provider), std::move(handle), 4); } -void TextShape::DrawSubStringOutlined(ref_ptr context, - StraightTextLayout const & layout, dp::FontDecl const & font, - glm::vec2 const & baseOffset, ref_ptr batcher, - ref_ptr textures, bool isPrimary, - bool isOptional) const +void TextShape::DrawSubStringOutlined(ref_ptr context, StraightTextLayout const & layout, + dp::FontDecl const & font, glm::vec2 const &, ref_ptr batcher, + ref_ptr textures, bool isPrimary, bool isOptional) const { gpu::TTextOutlinedStaticVertexBuffer staticBuffer; gpu::TTextDynamicVertexBuffer dynamicBuffer; diff --git a/drape_frontend/transit_scheme_builder.cpp b/drape_frontend/transit_scheme_builder.cpp index 51a0a32b30..7285709dc2 100644 --- a/drape_frontend/transit_scheme_builder.cpp +++ b/drape_frontend/transit_scheme_builder.cpp @@ -880,8 +880,8 @@ StopNodeParamsPT & TransitSchemeBuilder::GetStopOrTransfer(MwmSchemeData & schem return scheme.m_transfersPT[id]; } -void TransitSchemeBuilder::PrepareSchemePT(TransitDisplayInfo const & transitDisplayInfo, - LinesDataPT const & lineData, MwmSchemeData & scheme) +void TransitSchemeBuilder::PrepareSchemePT(TransitDisplayInfo const & transitDisplayInfo, LinesDataPT const &, + MwmSchemeData & scheme) { m2::RectD boundingRect; diff --git a/drape_frontend/user_event_stream.cpp b/drape_frontend/user_event_stream.cpp index 96416b895f..762d645960 100644 --- a/drape_frontend/user_event_stream.cpp +++ b/drape_frontend/user_event_stream.cpp @@ -361,7 +361,7 @@ bool UserEventStream::OnSetScale(ref_ptr scaleEvent) ScreenBase const & startScreen = GetCurrentScreen(); auto anim = GetScaleAnimation(startScreen, scaleCenter, glbScaleCenter, factor); - anim->SetOnFinishAction([this](ref_ptr animation) + anim->SetOnFinishAction([this](const ref_ptr &) { if (m_listener) m_listener->OnAnimatedScaleEnded(); @@ -1197,7 +1197,7 @@ void UserEventStream::DetectLongTap(Touch const & touch) } } -bool UserEventStream::DetectDoubleTap(Touch const & touch) +bool UserEventStream::DetectDoubleTap(Touch const &) { if (m_state != STATE_WAIT_DOUBLE_TAP || m_touchTimer.ElapsedMilliseconds() > kDoubleTapPauseMs) return false; @@ -1227,7 +1227,7 @@ bool UserEventStream::DetectForceTap(Touch const & touch) return false; } -void UserEventStream::EndTapDetector(Touch const & touch) +void UserEventStream::EndTapDetector(Touch const &) { TEST_CALL(SHORT_TAP_DETECTED); ASSERT_EQUAL(m_state, STATE_TAP_DETECTION, ()); @@ -1273,7 +1273,7 @@ void UserEventStream::CancelFilter(Touch const & t) m_listener->OnSingleTouchFiltrate(m2::PointD(t.m_location), TouchEvent::TOUCH_CANCEL); } -void UserEventStream::StartDoubleTapAndHold(Touch const & touch) +void UserEventStream::StartDoubleTapAndHold(Touch const &) { TEST_CALL(BEGIN_DOUBLE_TAP_AND_HOLD); ASSERT_EQUAL(m_state, STATE_WAIT_DOUBLE_TAP_HOLD, ()); @@ -1298,7 +1298,7 @@ void UserEventStream::UpdateDoubleTapAndHold(Touch const & touch) m_navigator.Scale(scaleCenter, scaleFactor); } -void UserEventStream::EndDoubleTapAndHold(Touch const & touch) +void UserEventStream::EndDoubleTapAndHold(Touch const &) { TEST_CALL(END_DOUBLE_TAP_AND_HOLD); ASSERT_EQUAL(m_state, STATE_DOUBLE_TAP_HOLD, ()); diff --git a/editor/editor_tests/osm_editor_test.cpp b/editor/editor_tests/osm_editor_test.cpp index 52fc003d1e..94e79069fc 100644 --- a/editor/editor_tests/osm_editor_test.cpp +++ b/editor/editor_tests/osm_editor_test.cpp @@ -183,7 +183,7 @@ uint32_t CountFeaturesInRect(MwmSet::MwmId const & mwmId, m2::RectD const & rect auto & editor = osm::Editor::Instance(); int unused = 0; uint32_t counter = 0; - editor.ForEachCreatedFeature(mwmId, [&counter](uint32_t index) { ++counter; }, rect, unused); + editor.ForEachCreatedFeature(mwmId, [&counter](uint32_t) { ++counter; }, rect, unused); return counter; } @@ -325,7 +325,7 @@ void EditorTest::SetIndexTest() }); uint32_t counter = 0; - editor.ForEachFeatureAtPoint([&counter](FeatureType & ft) + editor.ForEachFeatureAtPoint([&counter](FeatureType &) { ++counter; }, {100.0, 100.0}); @@ -333,7 +333,7 @@ void EditorTest::SetIndexTest() TEST_EQUAL(counter, 0, ()); counter = 0; - editor.ForEachFeatureAtPoint([&counter](FeatureType & ft) + editor.ForEachFeatureAtPoint([&counter](FeatureType &) { ++counter; }, {3.0, 3.0}); @@ -341,7 +341,7 @@ void EditorTest::SetIndexTest() TEST_EQUAL(counter, 1, ()); counter = 0; - editor.ForEachFeatureAtPoint([&counter](FeatureType & ft) + editor.ForEachFeatureAtPoint([&counter](FeatureType &) { ++counter; }, {1.0, 1.0}); @@ -349,7 +349,7 @@ void EditorTest::SetIndexTest() TEST_EQUAL(counter, 2, ()); counter = 0; - editor.ForEachFeatureAtPoint([&counter](FeatureType & ft) + editor.ForEachFeatureAtPoint([&counter](FeatureType &) { ++counter; }, {4.0, 4.0}); @@ -591,7 +591,7 @@ void EditorTest::OnMapDeregisteredTest() builder.Add(cafeMoscow); }); - auto nzMwmId = BuildMwm("NZ", [](TestMwmBuilder & builder) + auto nzMwmId = BuildMwm("NZ", [](TestMwmBuilder &) { }); m_dataSource.DeregisterMap(nzMwmId.GetInfo()->GetLocalFile().GetCountryFile()); diff --git a/generator/addresses_collector.cpp b/generator/addresses_collector.cpp index b79dc2ddf5..973f5372fe 100644 --- a/generator/addresses_collector.cpp +++ b/generator/addresses_collector.cpp @@ -156,7 +156,7 @@ AddressesCollector::AddressesCollector(std::string const & filename) { } -std::shared_ptr AddressesCollector::Clone(IDRInterfacePtr const & cache) const +std::shared_ptr AddressesCollector::Clone(IDRInterfacePtr const &) const { return std::make_shared(GetFilename()); } diff --git a/generator/feature_segments_checker/feature_segments_checker.cpp b/generator/feature_segments_checker/feature_segments_checker.cpp index ab6ca3f177..2f0708b4a0 100644 --- a/generator/feature_segments_checker/feature_segments_checker.cpp +++ b/generator/feature_segments_checker/feature_segments_checker.cpp @@ -157,7 +157,7 @@ public: { } - void operator()(FeatureType & f, uint32_t const & id) + void operator()(FeatureType & f, uint32_t const & /* id */) { f.ParseHeader2(); if (!GetBicycleModel().IsRoad(feature::TypesHolder(f))) diff --git a/generator/generator_integration_tests/mwm_playground.cpp b/generator/generator_integration_tests/mwm_playground.cpp index 676234961e..f078850ccf 100644 --- a/generator/generator_integration_tests/mwm_playground.cpp +++ b/generator/generator_integration_tests/mwm_playground.cpp @@ -48,9 +48,9 @@ UNIT_TEST(CrossMwmWeights) using IdxWeightT = std::pair; std::vector idx2weight; - connector.ForEachEnter([&](uint32_t enterIdx, Segment const & enter) + connector.ForEachEnter([&](uint32_t enterIdx, Segment const &) { - connector.ForEachExit([&](uint32_t exitIdx, Segment const & exit) + connector.ForEachExit([&](uint32_t exitIdx, Segment const &) { uint32_t const idx = connector.GetWeightIndex(enterIdx, exitIdx); uint32_t const weight = connector.GetWeight(enterIdx, exitIdx); diff --git a/generator/generator_integration_tests/towns_tests.cpp b/generator/generator_integration_tests/towns_tests.cpp index abe65f3833..8f8ce85e62 100644 --- a/generator/generator_integration_tests/towns_tests.cpp +++ b/generator/generator_integration_tests/towns_tests.cpp @@ -45,8 +45,8 @@ namespace { class TestAffiliation : public feature::AffiliationInterface { - std::vector GetAffiliations(feature::FeatureBuilder const & fb) const override { return {}; } - std::vector GetAffiliations(m2::PointD const & point) const override { return {}; } + std::vector GetAffiliations(feature::FeatureBuilder const & /* fb */) const override { return {}; } + std::vector GetAffiliations(m2::PointD const & /* point */) const override { return {}; } bool HasCountryByName(std::string const & name) const override { diff --git a/generator/generator_tests/mini_roundabout_tests.cpp b/generator/generator_tests/mini_roundabout_tests.cpp index 2438d7547f..db97155b45 100644 --- a/generator/generator_tests/mini_roundabout_tests.cpp +++ b/generator/generator_tests/mini_roundabout_tests.cpp @@ -50,7 +50,7 @@ OsmElement RoadNode(uint64_t id, double lat, double lon) } void TestRunCmpPoints(std::vector const & pointsFact, - std::vector const & pointsPlan, double r) + std::vector const & pointsPlan, double /* r */) { TEST_EQUAL(pointsFact.size(), pointsPlan.size(), ()); TEST_GREATER(pointsFact.size(), 2, ()); diff --git a/generator/generator_tests/node_mixer_test.cpp b/generator/generator_tests/node_mixer_test.cpp index b9184cc1ba..522c52656b 100644 --- a/generator/generator_tests/node_mixer_test.cpp +++ b/generator/generator_tests/node_mixer_test.cpp @@ -8,17 +8,17 @@ UNIT_TEST(NodeMixerTests) { std::istringstream stream1(""); - generator::MixFakeNodes(stream1, [](OsmElement & p) { + generator::MixFakeNodes(stream1, [](OsmElement &) { TEST(false, ("Returned an object for an empty input stream.")); }); std::istringstream stream2("shop=gift\nname=Shop\n"); - generator::MixFakeNodes(stream2, [](OsmElement & p) { + generator::MixFakeNodes(stream2, [](OsmElement &) { TEST(false, ("Returned an object for a source without coordinates.")); }); std::istringstream stream3("lat=4.0\nlon=-4.1\n"); - generator::MixFakeNodes(stream3, [](OsmElement & p) { + generator::MixFakeNodes(stream3, [](OsmElement &) { TEST(false, ("Returned an object for a source without tags.")); }); diff --git a/generator/generator_tests/road_access_test.cpp b/generator/generator_tests/road_access_test.cpp index 07bfdaa7f3..d1dcb60f46 100644 --- a/generator/generator_tests/road_access_test.cpp +++ b/generator/generator_tests/road_access_test.cpp @@ -120,8 +120,8 @@ class IntermediateDataTest : public cache::IntermediateDataReaderInterface std::map m_map; public: - virtual bool GetNode(cache::Key id, double & y, double & x) const { UNREACHABLE(); } - virtual bool GetWay(cache::Key id, WayElement & e) + bool GetNode(cache::Key, double &, double &) const override { UNREACHABLE(); } + bool GetWay(cache::Key id, WayElement & e) override { auto it = m_map.find(id); if (it != m_map.end()) @@ -131,7 +131,7 @@ public: } return false; } - virtual bool GetRelation(cache::Key id, RelationElement & e) { UNREACHABLE(); } + bool GetRelation(cache::Key, RelationElement &) override { UNREACHABLE(); } void Add(OsmElement const & e) { @@ -199,12 +199,12 @@ class TestAccessFixture class Way2Feature : public OsmWay2FeaturePoint { public: - virtual void ForEachFeature(uint64_t wayID, std::function const & fn) override + void ForEachFeature(uint64_t wayID, std::function const & fn) override { fn(base::checked_cast(wayID)); } - virtual void ForEachNodeIdx(uint64_t wayID, uint32_t candidateIdx, m2::PointU pt, - std::function const & fn) override + void ForEachNodeIdx(uint64_t wayID, uint32_t, m2::PointU pt, + std::function const & fn) override { auto const ll = mercator::ToLatLon(PointUToPointD(pt, kPointCoordBits, mercator::Bounds::FullRect())); diff --git a/generator/osm2type.cpp b/generator/osm2type.cpp index 2012d46078..20cebb3b23 100644 --- a/generator/osm2type.cpp +++ b/generator/osm2type.cpp @@ -1313,77 +1313,77 @@ void GetNameAndType(OsmElement * p, FeatureBuilderParams & params, feature::AddressData addr; TagProcessor(p).ApplyRules( { - {"addr:housenumber", "*", [&houseNumber](string & k, string & v) + {"addr:housenumber", "*", [&houseNumber](string & /* k */, string & v) { houseNumber = std::move(v); }}, - {"addr:conscriptionnumber", "*", [&conscriptionHN](string & k, string & v) + {"addr:conscriptionnumber", "*", [&conscriptionHN](string & /* k */, string & v) { conscriptionHN = std::move(v); }}, - {"addr:provisionalnumber", "*", [&conscriptionHN](string & k, string & v) + {"addr:provisionalnumber", "*", [&conscriptionHN](string & /* k */, string & v) { conscriptionHN = std::move(v); }}, - {"addr:streetnumber", "*", [&streetHN](string & k, string & v) + {"addr:streetnumber", "*", [&streetHN](string & /* k */, string & v) { streetHN = std::move(v); }}, - {"contact:housenumber", "*", [&houseNumber](string & k, string & v) + {"contact:housenumber", "*", [&houseNumber](string & /* k */, string & v) { if (houseNumber.empty()) houseNumber = std::move(v); }}, - {"addr:housename", "*", [&houseName](string & k, string & v) + {"addr:housename", "*", [&houseName](string & /* k */, string & v) { houseName = std::move(v); }}, - {"addr:street", "*", [&addr](string & k, string & v) + {"addr:street", "*", [&addr](string & /* k */, string & v) { addr.Set(feature::AddressData::Type::Street, std::move(v)); }}, - {"contact:street", "*", [&addr](string & k, string & v) + {"contact:street", "*", [&addr](string & /* k */, string & v) { addr.SetIfAbsent(feature::AddressData::Type::Street, std::move(v)); }}, - {"addr:place", "*", [&addr](string & k, string & v) + {"addr:place", "*", [&addr](string & /* k */, string & v) { addr.Set(feature::AddressData::Type::Place, std::move(v)); }}, - {"addr:city", "*", [&addrCity](string & k, string & v) + {"addr:city", "*", [&addrCity](string & /* k */, string & v) { addrCity = std::move(v); }}, - {"addr:suburb", "*", [&addrSuburb](string & k, string & v) + {"addr:suburb", "*", [&addrSuburb](string & /* k */, string & v) { addrSuburb = std::move(v); }}, - {"addr:postcode", "*", [&addrPostcode](string & k, string & v) + {"addr:postcode", "*", [&addrPostcode](string & /* k */, string & v) { addrPostcode = std::move(v); }}, - {"postal_code", "*", [&addrPostcode](string & k, string & v) + {"postal_code", "*", [&addrPostcode](string & /* k */, string & v) { addrPostcode = std::move(v); }}, - {"contact:postcode", "*", [&addrPostcode](string & k, string & v) + {"contact:postcode", "*", [&addrPostcode](string & /* k */, string & v) { if (addrPostcode.empty()) addrPostcode = std::move(v); }}, - {"population", "*", [¶ms](string & k, string & v) + {"population", "*", [¶ms](string & /* k */, string & v) { // Get population rank. uint64_t const population = generator::osm_element::GetPopulation(v); if (population != 0) params.rank = feature::PopulationToRank(population); }}, - {"ref", "*", [¶ms](string & k, string & v) + {"ref", "*", [¶ms](string & /* k */, string & v) { // Get reference; its used for selected types only, see FeatureBuilder::PreSerialize(). params.ref = std::move(v); }}, - {"layer", "*", [¶ms](string & k, string & v) + {"layer", "*", [¶ms](string & /* k */, string & v) { // Get layer. if (params.layer == feature::LAYER_EMPTY) @@ -1469,12 +1469,12 @@ void GetNameAndType(OsmElement * p, FeatureBuilderParams & params, // Fetch piste:name and piste:ref if there are no other name/ref values. TagProcessor(p).ApplyRules( { - {"piste:ref", "*", [¶ms](string & k, string & v) + {"piste:ref", "*", [¶ms](string & /* k */, string & v) { if (params.ref.empty()) params.ref = std::move(v); }}, - {"piste:name", "*", [¶ms](string & k, string & v) + {"piste:name", "*", [¶ms](string & /* k */, string & v) { params.SetDefaultNameIfEmpty(std::move(v)); }}, diff --git a/generator/postcode_points_builder.cpp b/generator/postcode_points_builder.cpp index 5f83ff7186..23a31fc62e 100644 --- a/generator/postcode_points_builder.cpp +++ b/generator/postcode_points_builder.cpp @@ -139,7 +139,7 @@ void GetUSPostcodes(std::string const & filename, storage::CountryId const & cou usFieldIndices.m_longIndex = 4; usFieldIndices.m_datasetCount = 8; - auto const transformUsPostcode = [](std::string & postcode) { return true; }; + auto const transformUsPostcode = [](std::string & /* postcode */) { return true; }; std::vector> usPostcodesKeyValuePairs; std::vector usPostcodesValueMapping; diff --git a/generator/routing_index_generator.cpp b/generator/routing_index_generator.cpp index f080f5b5b5..6d5256501b 100644 --- a/generator/routing_index_generator.cpp +++ b/generator/routing_index_generator.cpp @@ -204,7 +204,7 @@ public: RouteWeight GetAStarWeightEpsilon() { return RouteWeight(0.0); } - RouteWeight GetCrossBorderPenalty(NumMwmId mwmId1, NumMwmId mwmId2) { return RouteWeight(0); } + RouteWeight GetCrossBorderPenalty(NumMwmId /* mwmId1 */, NumMwmId /* mwmId2 */) { return RouteWeight(0); } /// @} ms::LatLon const & GetPoint(Segment const & s, bool forward) @@ -277,7 +277,7 @@ public: /// and |VehicleType::Car|. void CalcCrossMwmTransitions( string const & mwmFile, string const & intermediateDir, string const & mappingFile, - vector const & borders, string const & country, + vector const & /* borders */, string const & country, CountryParentNameGetterFn const & countryParentNameGetterFn, CrossMwmConnectorBuilderEx & builder) { @@ -317,7 +317,7 @@ void CalcCrossMwmTransitions( /// |transitions| will be equal to VehicleType::Transit after call of this method. void CalcCrossMwmTransitions( string const & mwmFile, string const & intermediateDir, string const & mappingFile, - vector const & borders, string const & country, + vector const & borders, string const & /* country */, CountryParentNameGetterFn const & /* countryParentNameGetterFn */, CrossMwmConnectorBuilderEx & builder) { @@ -380,7 +380,7 @@ void CalcCrossMwmTransitions( /// \brief Fills |transitions| for experimental transit case. It means that Transition::m_roadMask /// for items in |transitions| will be equal to VehicleType::Transit after the call of this method. void CalcCrossMwmTransitionsExperimental( - string const & mwmFile, vector const & borders, string const & country, + string const & mwmFile, vector const & borders, string const & /* country */, CountryParentNameGetterFn const & /* countryParentNameGetterFn */, ::transit::experimental::EdgeIdToFeatureId const & edgeIdToFeatureId, CrossMwmConnectorBuilderEx & builder) @@ -443,10 +443,10 @@ void CalcCrossMwmTransitionsExperimental( // Dummy specialization. We need it to compile this function overload for experimental transit. void CalcCrossMwmTransitionsExperimental( - string const & mwmFile, vector const & borders, string const & country, - CountryParentNameGetterFn const & countryParentNameGetterFn, - ::transit::experimental::EdgeIdToFeatureId const & edgeIdToFeatureId, - CrossMwmConnectorBuilderEx & builder) + string const & /* mwmFile */, vector const & /* borders */, string const & /* country */, + CountryParentNameGetterFn const & /* countryParentNameGetterFn */, + ::transit::experimental::EdgeIdToFeatureId const & /* edgeIdToFeatureId */, + CrossMwmConnectorBuilderEx & /* builder */) { CHECK(false, ("This is dummy specialization and it shouldn't be called.")); } diff --git a/generator/srtm_coverage_checker/srtm_coverage_checker.cpp b/generator/srtm_coverage_checker/srtm_coverage_checker.cpp index 12d182ab99..cb46e29f9b 100644 --- a/generator/srtm_coverage_checker/srtm_coverage_checker.cpp +++ b/generator/srtm_coverage_checker/srtm_coverage_checker.cpp @@ -66,7 +66,7 @@ int main(int argc, char * argv[]) size_t all = 0; size_t good = 0; - feature::ForEachFeature(path, [&](FeatureType & ft, uint32_t fid) { + feature::ForEachFeature(path, [&](FeatureType & ft, uint32_t /* fid */) { if (!routing::IsRoad(feature::TypesHolder(ft))) return; diff --git a/generator/transit_generator.cpp b/generator/transit_generator.cpp index 2dcccaf554..3faf6bcceb 100644 --- a/generator/transit_generator.cpp +++ b/generator/transit_generator.cpp @@ -185,7 +185,7 @@ void DeserializeFromJson(OsmIdToFeatureIdsMap const & mapping, } void ProcessGraph(std::string const & mwmPath, CountryId const & countryId, - OsmIdToFeatureIdsMap const & osmIdToFeatureIdsMap, GraphData & data) + OsmIdToFeatureIdsMap const & /* osmIdToFeatureIdsMap */, GraphData & data) { CalculateBestPedestrianSegments(mwmPath, countryId, data); data.Sort(); diff --git a/indexer/CMakeLists.txt b/indexer/CMakeLists.txt index 8decf13cc5..5aa28d261a 100644 --- a/indexer/CMakeLists.txt +++ b/indexer/CMakeLists.txt @@ -142,15 +142,6 @@ set(SRC validate_and_format_contacts.hpp ) -set(OTHER_FILES drules_struct.proto) - -# Disable warnings. -set_source_files_properties(drules_struct.pb.cc PROPERTIES COMPILE_FLAGS - "$<$:-Wno-shorten-64-to-32> $<$:-Wno-deprecated-declarations>" -) - -file(COPY ${OTHER_FILES} DESTINATION ${CMAKE_BINARY_DIR}) - omim_add_library(${PROJECT_NAME} ${SRC}) target_link_libraries(${PROJECT_NAME} diff --git a/indexer/drules_include.hpp b/indexer/drules_include.hpp index 8ea87a889d..08fa5d461d 100644 --- a/indexer/drules_include.hpp +++ b/indexer/drules_include.hpp @@ -2,14 +2,14 @@ #include "std/target_os.hpp" -// Surprisingly, clang defines __GNUC__ -#if defined(__GNUC__) && !defined(__llvm__) && !defined(__INTEL_COMPILER) +#if defined(__GNUC__) && !defined(__INTEL_COMPILER) #pragma GCC diagnostic push #pragma GCC diagnostic ignored "-Wdeprecated-declarations" -#endif // defined(__GNUC__) && !defined(__llvm__) && !defined(__INTEL_COMPILER) +#pragma GCC diagnostic ignored "-Wunused-parameter" +#endif // defined(__GNUC__) && !defined(__INTEL_COMPILER) #include "indexer/drules_struct.pb.h" -#if defined(__GNUC__) && !defined(__llvm__) && !defined(__INTEL_COMPILER) +#if defined(__GNUC__) && !defined(__INTEL_COMPILER) #pragma GCC diagnostic pop -#endif // defined(__GNUC__) && !defined(__llvm__) && !defined(__INTEL_COMPILER) +#endif // defined(__GNUC__) && !defined(__INTEL_COMPILER) diff --git a/indexer/editable_map_object.cpp b/indexer/editable_map_object.cpp index 8d35db0d98..48f06e07ac 100644 --- a/indexer/editable_map_object.cpp +++ b/indexer/editable_map_object.cpp @@ -101,9 +101,8 @@ NamesDataSource EditableMapObject::GetNamesDataSource() } // static -NamesDataSource EditableMapObject::GetNamesDataSource(StringUtf8Multilang const & source, - vector const & mwmLanguages, - int8_t const userLangCode) +NamesDataSource EditableMapObject::GetNamesDataSource(StringUtf8Multilang const & source, vector const &, + int8_t const) { NamesDataSource result; auto & names = result.names; diff --git a/indexer/feature_source.cpp b/indexer/feature_source.cpp index 7642d835c1..1080d815b5 100644 --- a/indexer/feature_source.cpp +++ b/indexer/feature_source.cpp @@ -41,14 +41,8 @@ std::unique_ptr FeatureSource::GetOriginalFeature(uint32_t index) c return ft; } -FeatureStatus FeatureSource::GetFeatureStatus(uint32_t index) const -{ - return FeatureStatus::Untouched; -} +FeatureStatus FeatureSource::GetFeatureStatus(uint32_t) const { return FeatureStatus::Untouched; } -std::unique_ptr FeatureSource::GetModifiedFeature(uint32_t index) const { return {}; } +std::unique_ptr FeatureSource::GetModifiedFeature(uint32_t) const { return {}; } -void FeatureSource::ForEachAdditionalFeature(m2::RectD const & rect, int scale, - std::function const & fn) const -{ -} +void FeatureSource::ForEachAdditionalFeature(m2::RectD const &, int, std::function const &) const {} diff --git a/indexer/indexer_tests/feature_to_osm_tests.cpp b/indexer/indexer_tests/feature_to_osm_tests.cpp index c86f1f4775..83791f83b9 100644 --- a/indexer/indexer_tests/feature_to_osm_tests.cpp +++ b/indexer/indexer_tests/feature_to_osm_tests.cpp @@ -58,7 +58,7 @@ UNIT_CLASS_TEST(FeatureIdToGeoObjectIdTest, Smoke) origM.Add(e.first, e.second); // TestMwmBuilder will create the section but we will rewrite it right away. - auto testWorldId = BuildWorld([&](TestMwmBuilder & builder) {}); + auto testWorldId = BuildWorld([&](TestMwmBuilder &) {}); auto const testWorldPath = testWorldId.GetInfo()->GetLocalFile().GetPath(MapFileType::Map); std::vector buf; diff --git a/indexer/indexer_tests/features_vector_test.cpp b/indexer/indexer_tests/features_vector_test.cpp index d945cf3660..94eb8276fe 100644 --- a/indexer/indexer_tests/features_vector_test.cpp +++ b/indexer/indexer_tests/features_vector_test.cpp @@ -68,7 +68,7 @@ UNIT_TEST(FeaturesVectorTest_ParseMetadata) FeaturesVector fv(value->m_cont, value->GetHeader(), value->m_table.get(), value->m_metaDeserializer.get()); map actual; - fv.ForEach([&](FeatureType & ft, uint32_t index) + fv.ForEach([&](FeatureType & ft, uint32_t) { string const postcode(ft.GetMetadata(feature::Metadata::FMD_POSTCODE)); if (!postcode.empty()) diff --git a/kml/visitors.hpp b/kml/visitors.hpp index bf7f76a15c..cecb4bc0f8 100644 --- a/kml/visitors.hpp +++ b/kml/visitors.hpp @@ -71,7 +71,7 @@ public: } template - std::enable_if_t::value> PerformActionIfPossible(T & t) {} + std::enable_if_t::value> PerformActionIfPossible(T &) {} template std::enable_if_t::value> @@ -81,7 +81,7 @@ public: } template - std::enable_if_t::value> VisitIfPossible(T & t) {} + std::enable_if_t::value> VisitIfPossible(T &) {} template void operator()(T & t, char const * /* name */ = nullptr) @@ -166,7 +166,7 @@ public: } template - void Collect(LocalizableStringIndex & index) {} + void Collect(LocalizableStringIndex &) {} std::vector && StealCollection() { return std::move(m_collection); } @@ -778,7 +778,7 @@ public: } template - void Collect(LocalizableStringIndex & index) {} + void Collect(LocalizableStringIndex &) {} private: bool SwitchSubIndexIfNeeded(LocalizableStringIndex & index) diff --git a/map/benchmark_tools.cpp b/map/benchmark_tools.cpp index 1377a18ac7..d1d7efa80b 100644 --- a/map/benchmark_tools.cpp +++ b/map/benchmark_tools.cpp @@ -58,13 +58,13 @@ void RunScenario(Framework * framework, std::shared_ptr handle) auto & scenarioData = handle->m_scenariosToRun[handle->m_currentScenario]; framework->GetDrapeEngine()->RunScenario(std::move(scenarioData), - [handle](std::string const & name) + [handle](std::string const & /* name */) { #ifdef DRAPE_MEASURER_BENCHMARK df::DrapeMeasurer::Instance().Start(); #endif }, - [framework, handle](std::string const & name) + [framework, handle](std::string const & /* name */) { #ifdef DRAPE_MEASURER_BENCHMARK df::DrapeMeasurer::Instance().Stop(); @@ -204,6 +204,8 @@ void RunGraphicsBenchmark(Framework * framework) // Run scenarios without downloading. RunScenario(framework, handle); +#else + UNUSED_VALUE(framework); #endif } } // namespace benchmark diff --git a/map/chart_generator.cpp b/map/chart_generator.cpp index 74f7872c59..f6e3c18ef0 100644 --- a/map/chart_generator.cpp +++ b/map/chart_generator.cpp @@ -6,6 +6,11 @@ #include +#if defined(__GNUC__) && !defined(__INTEL_COMPILER) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-parameter" +#endif // defined(__GNUC__) && !defined(__INTEL_COMPILER) + #include "3party/agg/agg_conv_curve.h" #include "3party/agg/agg_conv_stroke.h" #include "3party/agg/agg_path_storage.h" @@ -14,6 +19,10 @@ #include "3party/agg/agg_renderer_scanline.h" #include "3party/agg/agg_scanline_p.h" +#if defined(__GNUC__) && !defined(__INTEL_COMPILER) +#pragma GCC diagnostic pop +#endif // defined(__GNUC__) && !defined(__INTEL_COMPILER) + namespace maps { using namespace std; diff --git a/map/map_tests/bookmarks_test.cpp b/map/map_tests/bookmarks_test.cpp index 2aa05f48a2..012573eee2 100644 --- a/map/map_tests/bookmarks_test.cpp +++ b/map/map_tests/bookmarks_test.cpp @@ -821,7 +821,7 @@ UNIT_TEST(Bookmarks_Sorting) } }; - auto const printBlocks = [](std::string const & name, BookmarkManager::SortedBlocksCollection const & blocks) + auto const printBlocks = [](std::string const & /* name */, BookmarkManager::SortedBlocksCollection const & /* blocks */) { // Uncomment for debug output. /* @@ -847,7 +847,7 @@ UNIT_TEST(Bookmarks_Sorting) params.m_hasMyPosition = hasMyPosition; params.m_myPosition = myPosition; params.m_onResults = [&sortedBlocks](BookmarkManager::SortedBlocksCollection && results, - BookmarkManager::SortParams::Status status) + BookmarkManager::SortParams::Status /* status */) { sortedBlocks = std::move(results); }; diff --git a/map/map_tests/gps_track_storage_test.cpp b/map/map_tests/gps_track_storage_test.cpp index 473c5fdf30..2666777989 100644 --- a/map/map_tests/gps_track_storage_test.cpp +++ b/map/map_tests/gps_track_storage_test.cpp @@ -98,7 +98,7 @@ UNIT_TEST(GpsTrackStorage_WriteReadWithoutTrunc) GpsTrackStorage stg(filePath, fileMaxItemCount); size_t i = 0; - stg.ForEach([&](location::GpsTrackInfo const & point)->bool{ ++i; return true; }); + stg.ForEach([&](location::GpsTrackInfo const & /* point */)->bool{ ++i; return true; }); TEST_EQUAL(i, 0, ()); } } @@ -182,7 +182,7 @@ UNIT_TEST(GpsTrackStorage_WriteReadWithTrunc) GpsTrackStorage stg(filePath, fileMaxItemCount); size_t i = 0; - stg.ForEach([&](location::GpsInfo const & point)->bool{ ++i; return true; }); + stg.ForEach([&](location::GpsInfo const & /* point */)->bool{ ++i; return true; }); TEST_EQUAL(i, 0, ()); } } diff --git a/map/routing_manager.cpp b/map/routing_manager.cpp index 7f2df863ce..b34d467599 100644 --- a/map/routing_manager.cpp +++ b/map/routing_manager.cpp @@ -472,8 +472,8 @@ void RoutingManager::OnLocationUpdate(location::GpsInfo const & info) m_extrapolator.OnLocationUpdate(info); } -RouterType RoutingManager::GetBestRouter(m2::PointD const & startPoint, - m2::PointD const & finalPoint) const +RouterType RoutingManager::GetBestRouter(m2::PointD const & /* startPoint */, + m2::PointD const & /* finalPoint */) const { // todo Implement something more sophisticated here (or delete the method). return GetLastUsedRouter(); diff --git a/map/search_api.hpp b/map/search_api.hpp index 88498cc4cf..c04ffa6135 100644 --- a/map/search_api.hpp +++ b/map/search_api.hpp @@ -50,7 +50,7 @@ public: virtual void RunUITask(std::function /* fn */) {} using ResultsIterT = search::Results::ConstIter; - virtual void ShowViewportSearchResults(ResultsIterT begin, ResultsIterT end, bool clear) {} + virtual void ShowViewportSearchResults(ResultsIterT /* begin */, ResultsIterT /* end */, bool /* clear */) {} virtual void ClearViewportSearchResults() {} @@ -60,7 +60,7 @@ public: virtual m2::PointD GetMinDistanceBetweenResults() const { return {0, 0}; } - virtual search::ProductInfo GetProductInfo(search::Result const & result) const { return {}; } + virtual search::ProductInfo GetProductInfo(search::Result const & /* result */) const { return {}; } }; SearchAPI(DataSource & dataSource, storage::Storage const & storage, diff --git a/map/user_mark_layer.hpp b/map/user_mark_layer.hpp index b34d88f6b1..dadcd6c1fb 100644 --- a/map/user_mark_layer.hpp +++ b/map/user_mark_layer.hpp @@ -33,7 +33,7 @@ public: virtual void SetIsVisible(bool isVisible); protected: - virtual void SetDirty(bool updateModificationDate = true) { m_isDirty = true; } + virtual void SetDirty(bool /* updateModificationDate */ = true) { m_isDirty = true; } UserMark::Type m_type; diff --git a/openlr/candidate_paths_getter.cpp b/openlr/candidate_paths_getter.cpp index 7e1cf3d728..118029c0bb 100644 --- a/openlr/candidate_paths_getter.cpp +++ b/openlr/candidate_paths_getter.cpp @@ -117,10 +117,8 @@ void CandidatePathsGetter::GetStartLines(vector const & points, bool base::SortUnique(edges, less(), EdgesAreAlmostEqual); } -void CandidatePathsGetter::GetAllSuitablePaths(Graph::EdgeVector const & startLines, - bool isLastPoint, double bearDistM, - FunctionalRoadClass functionalRoadClass, - FormOfWay formOfWay, double distanceToNextPointM, +void CandidatePathsGetter::GetAllSuitablePaths(Graph::EdgeVector const & startLines, bool isLastPoint, double bearDistM, + FunctionalRoadClass functionalRoadClass, FormOfWay formOfWay, double, vector & allPaths) { queue q; diff --git a/openlr/helpers.cpp b/openlr/helpers.cpp index 40a8150dea..f152aa87d5 100644 --- a/openlr/helpers.cpp +++ b/openlr/helpers.cpp @@ -155,7 +155,7 @@ string LogAs2GisPath(Graph::EdgeVector const & path) string LogAs2GisPath(Graph::Edge const & e) { return LogAs2GisPath(Graph::EdgeVector({e})); } -bool PassesRestriction(Graph::Edge const & e, FunctionalRoadClass restriction, FormOfWay formOfWay, +bool PassesRestriction(Graph::Edge const & e, FunctionalRoadClass restriction, FormOfWay /* formOfWay */, int frcThreshold, RoadInfoGetter & infoGetter) { if (e.IsFake() || restriction == FunctionalRoadClass::NotAValue) diff --git a/openlr/openlr_match_quality/openlr_assessment_tool/traffic_mode.cpp b/openlr/openlr_match_quality/openlr_assessment_tool/traffic_mode.cpp index 0cec12a32a..ad8ba4dee5 100644 --- a/openlr/openlr_match_quality/openlr_assessment_tool/traffic_mode.cpp +++ b/openlr/openlr_match_quality/openlr_assessment_tool/traffic_mode.cpp @@ -222,12 +222,12 @@ bool TrafficMode::SaveSampleAs(std::string const & fileName) const return true; } -int TrafficMode::rowCount(const QModelIndex & parent) const +int TrafficMode::rowCount(const QModelIndex & /* parent */) const { return static_cast(m_segments.size()); } -int TrafficMode::columnCount(const QModelIndex & parent) const { return 4; } +int TrafficMode::columnCount(const QModelIndex & /* parent */) const { return 4; } QVariant TrafficMode::data(const QModelIndex & index, int role) const { diff --git a/openlr/openlr_match_quality/openlr_assessment_tool/traffic_panel.cpp b/openlr/openlr_match_quality/openlr_assessment_tool/traffic_panel.cpp index a10d714376..bb1c8a9237 100644 --- a/openlr/openlr_match_quality/openlr_assessment_tool/traffic_panel.cpp +++ b/openlr/openlr_match_quality/openlr_assessment_tool/traffic_panel.cpp @@ -16,8 +16,8 @@ ComboBoxDelegate::ComboBoxDelegate(QObject * parent) { } -QWidget * ComboBoxDelegate::createEditor(QWidget * parent, QStyleOptionViewItem const & option, - QModelIndex const & index) const +QWidget * ComboBoxDelegate::createEditor(QWidget * parent, QStyleOptionViewItem const & /* option */, + QModelIndex const & /* index */) const { auto * editor = new QComboBox(parent); editor->setFrame(false); @@ -40,7 +40,7 @@ void ComboBoxDelegate::setModelData(QWidget * editor, QAbstractItemModel * model } void ComboBoxDelegate::updateEditorGeometry(QWidget * editor, QStyleOptionViewItem const & option, - QModelIndex const & index) const + QModelIndex const & /* index */) const { editor->setGeometry(option.rect); } diff --git a/openlr/openlr_tests/decoded_path_test.cpp b/openlr/openlr_tests/decoded_path_test.cpp index 45583299e0..2fb4da242a 100644 --- a/openlr/openlr_tests/decoded_path_test.cpp +++ b/openlr/openlr_tests/decoded_path_test.cpp @@ -150,7 +150,7 @@ void WithRoad(vector const & points, Func && fn) UNIT_TEST(MakePath_Test) { std::vector const points{{0, 0}, {0, 1}, {1, 0}, {1, 1}}; - WithRoad(points, [&points](DataSource const & dataSource, FeatureType & road) { + WithRoad(points, [&points](DataSource const &, FeatureType & road) { auto const & id = road.GetID(); { openlr::Path const expected{ diff --git a/openlr/score_candidate_paths_getter.cpp b/openlr/score_candidate_paths_getter.cpp index 92985a3413..3f904880c5 100644 --- a/openlr/score_candidate_paths_getter.cpp +++ b/openlr/score_candidate_paths_getter.cpp @@ -222,8 +222,7 @@ void ScoreCandidatePathsGetter::GetAllSuitablePaths(ScoreEdgeVec const & startLi void ScoreCandidatePathsGetter::GetBestCandidatePaths(vector> const & allPaths, LinearSegmentSource source, bool isLastPoint, - uint32_t requiredBearing, double bearDistM, - m2::PointD const & startPoint, + uint32_t requiredBearing, double bearDistM, m2::PointD const &, ScorePathVec & candidates) { CHECK_NOT_EQUAL(source, LinearSegmentSource::NotValid, ()); diff --git a/platform/http_client_apple.mm b/platform/http_client_apple.mm index db817b6162..bc950969fc 100644 --- a/platform/http_client_apple.mm +++ b/platform/http_client_apple.mm @@ -181,7 +181,7 @@ bool HttpClient::RunHttpRequest() if (m_loadHeaders) { - [response.allHeaderFields enumerateKeysAndObjectsUsingBlock:^(NSString * key, NSString * obj, BOOL * stop) + [response.allHeaderFields enumerateKeysAndObjectsUsingBlock:^(NSString * key, NSString * obj, BOOL *) { m_headers.emplace(key.lowercaseString.UTF8String, obj.UTF8String); }]; diff --git a/platform/http_uploader_apple.mm b/platform/http_uploader_apple.mm index 94b226f467..b815a9ce7d 100644 --- a/platform/http_uploader_apple.mm +++ b/platform/http_uploader_apple.mm @@ -53,7 +53,7 @@ - (NSData *)requestDataWithBoundary:(NSString *)boundary { NSMutableData * data = [NSMutableData data]; - [self.params enumerateKeysAndObjectsUsingBlock:^(NSString * key, NSString * value, BOOL * stop) { + [self.params enumerateKeysAndObjectsUsingBlock:^(NSString * key, NSString * value, BOOL *) { [data appendData:[[NSString stringWithFormat:@"--%@\r\n", boundary] dataUsingEncoding:NSUTF8StringEncoding]]; [data appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"%@\"\r\n\r\n", @@ -92,7 +92,7 @@ NSString * contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@", boundary]; [uploadRequest setValue:contentType forHTTPHeaderField:@"Content-Type"]; - [self.headers enumerateKeysAndObjectsUsingBlock:^(NSString * key, NSString * value, BOOL * stop) { + [self.headers enumerateKeysAndObjectsUsingBlock:^(NSString * key, NSString * value, BOOL *) { [uploadRequest setValue:value forHTTPHeaderField:key]; }]; diff --git a/platform/platform_mac.mm b/platform/platform_mac.mm index 7a117bc0da..4f242cdff6 100644 --- a/platform/platform_mac.mm +++ b/platform/platform_mac.mm @@ -180,7 +180,7 @@ uint8_t Platform::GetBatteryLevel() return 100; } -void Platform::GetSystemFontNames(FilesList & res) const +void Platform::GetSystemFontNames(FilesList &) const { } diff --git a/platform/platform_tests_support/test_socket.cpp b/platform/platform_tests_support/test_socket.cpp index 0996e7e169..0f563e74a5 100644 --- a/platform/platform_tests_support/test_socket.cpp +++ b/platform/platform_tests_support/test_socket.cpp @@ -14,7 +14,7 @@ namespace tests_support { TestSocket::~TestSocket() { m_isConnected = false; } -bool TestSocket::Open(string const & host, uint16_t port) +bool TestSocket::Open(string const &, uint16_t) { if (m_isConnected) return false; diff --git a/qt/qt_common/map_widget.cpp b/qt/qt_common/map_widget.cpp index c5db59ae73..121f650ba6 100644 --- a/qt/qt_common/map_widget.cpp +++ b/qt/qt_common/map_widget.cpp @@ -185,7 +185,7 @@ df::Touch MapWidget::GetSymmetrical(df::Touch const & touch) const return result; } -void MapWidget::OnViewportChanged(ScreenBase const & screen) +void MapWidget::OnViewportChanged(ScreenBase const &) { UpdateScaleControl(); } diff --git a/qt_tstfrm/test_main_loop.cpp b/qt_tstfrm/test_main_loop.cpp index 1f773c3073..d644171c1d 100644 --- a/qt_tstfrm/test_main_loop.cpp +++ b/qt_tstfrm/test_main_loop.cpp @@ -22,7 +22,7 @@ public: {} protected: - void paintEvent(QPaintEvent * e) override + void paintEvent(QPaintEvent *) override { m_fn(this); } diff --git a/routing/dummy_world_graph.hpp b/routing/dummy_world_graph.hpp index b6c1e18d23..bb5b09e073 100644 --- a/routing/dummy_world_graph.hpp +++ b/routing/dummy_world_graph.hpp @@ -23,49 +23,45 @@ class DummyWorldGraph final : public WorldGraph public: using WorldGraph::GetEdgeList; - void GetEdgeList(astar::VertexData const & vertexData, bool isOutgoing, - bool useRoutingOptions, bool useAccessConditional, - SegmentEdgeListT & edges) override + void GetEdgeList(astar::VertexData const &, bool, bool, bool, SegmentEdgeListT &) override { UNREACHABLE(); } - void GetEdgeList(astar::VertexData const & vertexData, - Segment const & segment, bool isOutgoing, bool useAccessConditional, - JointEdgeListT & edges, - WeightListT & parentWeights) override + void GetEdgeList(astar::VertexData const &, Segment const &, bool, bool, JointEdgeListT &, + WeightListT &) override { UNREACHABLE(); } - bool CheckLength(RouteWeight const & weight, double startToFinishDistanceM) const override + bool CheckLength(RouteWeight const &, double) const override { return true; } - LatLonWithAltitude const & GetJunction(Segment const & segment, bool front) override + LatLonWithAltitude const & GetJunction(Segment const &, bool) override { UNREACHABLE(); } - ms::LatLon const & GetPoint(Segment const & segment, bool front) override + ms::LatLon const & GetPoint(Segment const &, bool) override { UNREACHABLE(); } - bool IsOneWay(NumMwmId mwmId, uint32_t featureId) override + bool IsOneWay(NumMwmId, uint32_t) override { UNREACHABLE(); } - bool IsPassThroughAllowed(NumMwmId mwmId, uint32_t featureId) override + bool IsPassThroughAllowed(NumMwmId, uint32_t) override { UNREACHABLE(); } void ClearCachedGraphs() override { UNREACHABLE(); } - void SetMode(WorldGraphMode mode) override {} + void SetMode(WorldGraphMode) override {} WorldGraphMode GetMode() const override { return WorldGraphMode::NoLeaps; } @@ -74,41 +70,36 @@ public: return RouteWeight(ms::DistanceOnEarth(from, to)); } - RouteWeight CalcSegmentWeight(Segment const & segment, EdgeEstimator::Purpose purpose) override + RouteWeight CalcSegmentWeight(Segment const &, EdgeEstimator::Purpose) override { UNREACHABLE(); } - RouteWeight CalcLeapWeight(ms::LatLon const & from, ms::LatLon const & to, - NumMwmId mwmId) const override - { + RouteWeight CalcLeapWeight(ms::LatLon const &, ms::LatLon const &, NumMwmId) const override { UNREACHABLE(); } - RouteWeight CalcOffroadWeight(ms::LatLon const & from, ms::LatLon const & to, - EdgeEstimator::Purpose purpose) const override + RouteWeight CalcOffroadWeight(ms::LatLon const & from, ms::LatLon const & to, EdgeEstimator::Purpose) const override { return RouteWeight(ms::DistanceOnEarth(from, to)); } - double CalculateETA(Segment const & from, Segment const & to) override + double CalculateETA(Segment const &, Segment const &) override { UNREACHABLE(); } - double CalculateETAWithoutPenalty(Segment const & segment) override + double CalculateETAWithoutPenalty(Segment const &) override { UNREACHABLE(); } - IndexGraph & GetIndexGraph(NumMwmId numMwmId) override + IndexGraph & GetIndexGraph(NumMwmId) override { UNREACHABLE(); } - void GetTwinsInner(Segment const & segment, bool isOutgoing, - std::vector & twins) override - { + void GetTwinsInner(Segment const &, bool, std::vector &) override { CHECK(false, ()); } }; diff --git a/routing/edge_estimator.cpp b/routing/edge_estimator.cpp index f70aeef123..c3d881cb0c 100644 --- a/routing/edge_estimator.cpp +++ b/routing/edge_estimator.cpp @@ -124,7 +124,7 @@ double GetPedestrianClimbPenalty(EdgeEstimator::Purpose purpose, double tangent, } } -double GetBicycleClimbPenalty(EdgeEstimator::Purpose purpose, double tangent, geometry::Altitude altitudeM) +double GetBicycleClimbPenalty(EdgeEstimator::Purpose, double tangent, geometry::Altitude altitudeM) { double constexpr kMinPenalty = 1.0; double const impact = tangent >= 0.0 ? 1.0 : 0.35; diff --git a/routing/features_road_graph.hpp b/routing/features_road_graph.hpp index bf14092129..88ca527fff 100644 --- a/routing/features_road_graph.hpp +++ b/routing/features_road_graph.hpp @@ -101,7 +101,7 @@ public: protected: MwmDataSource & m_dataSource; - virtual feature::AltitudeLoaderBase * GetAltitudesLoader(MwmSet::MwmId const & mwmId) const + virtual feature::AltitudeLoaderBase * GetAltitudesLoader(MwmSet::MwmId const &) const { // Don't retrieve altitudes here because FeaturesRoadGraphBase is used in IndexRouter for // IndexRouter::FindClosestProjectionToRoad and IndexRouter::FindBestEdges only. diff --git a/routing/geometry.cpp b/routing/geometry.cpp index a171f3952a..596a26d220 100644 --- a/routing/geometry.cpp +++ b/routing/geometry.cpp @@ -294,7 +294,7 @@ RoadGeometry const & Geometry::GetRoad(uint32_t featureId) return m_featureIdToRoad->GetValue(featureId); } -SpeedInUnits GeometryLoader::GetSavedMaxspeed(uint32_t featureId, bool forward) +SpeedInUnits GeometryLoader::GetSavedMaxspeed(uint32_t, bool) { UNREACHABLE(); } diff --git a/routing/index_graph.cpp b/routing/index_graph.cpp index 22b27ea85b..32fd8c3579 100644 --- a/routing/index_graph.cpp +++ b/routing/index_graph.cpp @@ -160,10 +160,9 @@ void IndexGraph::GetEdgeList(JointSegment const & parentJoint, Segment const & p parentWeights, parents); } -void IndexGraph::GetEdgeListImpl( - astar::VertexData const & parentVertexData, Segment const & parent, - bool isOutgoing, bool useAccessConditional, JointEdgeListT & edges, - WeightListT & parentWeights, Parents const & parents) const +void IndexGraph::GetEdgeListImpl(astar::VertexData const & parentVertexData, + Segment const & parent, bool isOutgoing, bool, JointEdgeListT & edges, + WeightListT & parentWeights, Parents const & parents) const { SegmentListT possibleChildren; GetSegmentCandidateForJoint(parent, isOutgoing, possibleChildren); diff --git a/routing/index_graph_serialization.cpp b/routing/index_graph_serialization.cpp index c55e316758..77a1c4b5f9 100644 --- a/routing/index_graph_serialization.cpp +++ b/routing/index_graph_serialization.cpp @@ -8,9 +8,9 @@ uint32_t constexpr IndexGraphSerializer::JointsFilter::kEmptyEntry; uint32_t constexpr IndexGraphSerializer::JointsFilter::kPushedEntry; // IndexGraphSerializer::SectionSerializer --------------------------------------------------------- -void IndexGraphSerializer::SectionSerializer::PreSerialize( - IndexGraph const & graph, std::unordered_map const & masks, - JointIdEncoder & jointEncoder) +void IndexGraphSerializer::SectionSerializer::PreSerialize(IndexGraph const & graph, + std::unordered_map const &, + JointIdEncoder & jointEncoder) { m_buffer.clear(); MemWriter> memWriter(m_buffer); diff --git a/routing/index_road_graph.cpp b/routing/index_road_graph.cpp index f228d4f83d..c1a6e4a4c3 100644 --- a/routing/index_road_graph.cpp +++ b/routing/index_road_graph.cpp @@ -69,8 +69,7 @@ void IndexRoadGraph::GetEdgeTypes(Edge const & edge, feature::TypesHolder & type types = feature::TypesHolder(*ft); } -void IndexRoadGraph::GetJunctionTypes(geometry::PointWithAltitude const & junction, - feature::TypesHolder & types) const +void IndexRoadGraph::GetJunctionTypes(geometry::PointWithAltitude const &, feature::TypesHolder & types) const { types = feature::TypesHolder(); } diff --git a/routing/junction_visitor.cpp b/routing/junction_visitor.cpp index da5db3e60c..30c5f2d1ae 100644 --- a/routing/junction_visitor.cpp +++ b/routing/junction_visitor.cpp @@ -10,8 +10,7 @@ namespace routing #ifdef DEBUG // Leaps algorithm. -void DebugRoutingState(Segment const & vertex, std::optional const & parent, - RouteWeight const & heuristic, RouteWeight const & distance) +void DebugRoutingState(Segment const &, std::optional const &, RouteWeight const &, RouteWeight const &) { // 1. Dump current processing vertex. // std::cout << DebugPrint(vertex); @@ -24,8 +23,8 @@ void DebugRoutingState(Segment const & vertex, std::optional const & pa } // Joints algorithm. -void DebugRoutingState(JointSegment const & vertex, std::optional const & parent, - RouteWeight const & heuristic, RouteWeight const & distance) +void DebugRoutingState(JointSegment const &, std::optional const &, RouteWeight const &, + RouteWeight const &) { // 1. Dump current processing vertex. // std::cout << DebugPrint(vertex); diff --git a/routing/road_access.cpp b/routing/road_access.cpp index 3833585ce2..c1c90ae7f9 100644 --- a/routing/road_access.cpp +++ b/routing/road_access.cpp @@ -14,7 +14,7 @@ namespace std::string const kNames[] = {"No", "Private", "Destination", "Yes", "Count"}; template -std::string DebugPrintKV(KV const & kvs, size_t maxKVToShow) +std::string DebugPrintKV(KV const & kvs, size_t /* maxKVToShow */) { // Print all range for now. return DebugPrintSequence(kvs.begin(), kvs.end()); diff --git a/routing/road_graph.cpp b/routing/road_graph.cpp index 76f1c20de0..414539b73d 100644 --- a/routing/road_graph.cpp +++ b/routing/road_graph.cpp @@ -319,7 +319,7 @@ IRoadGraph::RoadInfo MakeRoadInfoForTesting(bool bidirectional, double speedKMPH } // RoadGraphBase ------------------------------------------------------------------ -void RoadGraphBase::GetRouteEdges(EdgeVector & routeEdges) const +void RoadGraphBase::GetRouteEdges(EdgeVector &) const { NOTIMPLEMENTED(); } diff --git a/routing/routing_benchmarks/helpers.cpp b/routing/routing_benchmarks/helpers.cpp index ed9696c2e4..5a26fe1269 100644 --- a/routing/routing_benchmarks/helpers.cpp +++ b/routing/routing_benchmarks/helpers.cpp @@ -121,7 +121,7 @@ void RoutingTest::TestTwoPointsOnFeature(m2::PointD const & startPos, m2::PointD TestRouters(startPosOnFeature, finalPosOnFeature); } -std::unique_ptr RoutingTest::CreateRouter(std::string const & name) +std::unique_ptr RoutingTest::CreateRouter(std::string const &) { std::vector neededLocalFiles; neededLocalFiles.reserve(m_neededMaps.size()); diff --git a/routing/routing_quality/api/api.cpp b/routing/routing_quality/api/api.cpp index c21a38165f..f10d6f0ca4 100644 --- a/routing/routing_quality/api/api.cpp +++ b/routing/routing_quality/api/api.cpp @@ -133,7 +133,7 @@ RoutingApi::RoutingApi(std::string name, std::string token, uint32_t maxRPS) , m_accessToken(std::move(token)) , m_maxRPS(maxRPS) {} -Response RoutingApi::CalculateRoute(Params const & params, int32_t startTimeZoneUTC) const +Response RoutingApi::CalculateRoute(Params const &, int32_t) const { return {}; } diff --git a/routing/routing_tests/async_router_test.cpp b/routing/routing_tests/async_router_test.cpp index 7704f1090d..dbccb63b61 100644 --- a/routing/routing_tests/async_router_test.cpp +++ b/routing/routing_tests/async_router_test.cpp @@ -36,9 +36,8 @@ public: // IRouter overrides: string GetName() const override { return "Dummy"; } void SetGuides(GuidesTracks && /* guides */) override {} - RouterResultCode CalculateRoute(Checkpoints const & checkpoints, m2::PointD const & startDirection, - bool adjustToPrevRoute, RouterDelegate const & delegate, - Route & route) override + RouterResultCode CalculateRoute(Checkpoints const & checkpoints, m2::PointD const &, bool, RouterDelegate const &, + Route & route) override { route = Route("dummy", checkpoints.GetPoints().cbegin(), checkpoints.GetPoints().cend(), 0 /* route id */); @@ -49,8 +48,7 @@ public: return m_result; } - bool FindClosestProjectionToRoad(m2::PointD const & point, m2::PointD const & direction, - double radius, EdgeProj & proj) override + bool FindClosestProjectionToRoad(m2::PointD const &, m2::PointD const &, double, EdgeProj &) override { return false; } @@ -77,7 +75,7 @@ struct DummyRoutingCallbacks } // NeedMoreMapsCallback callback - void operator()(uint64_t routeId, set const & absent) + void operator()(uint64_t /* routeId */, set const & absent) { m_codes.push_back(RouterResultCode::NeedMoreMaps); m_absent.emplace_back(absent); diff --git a/routing/routing_tests/bfs_tests.cpp b/routing/routing_tests/bfs_tests.cpp index 712cf14602..9e84c8288c 100644 --- a/routing/routing_tests/bfs_tests.cpp +++ b/routing/routing_tests/bfs_tests.cpp @@ -164,7 +164,7 @@ UNIT_TEST(BFS_ReconstructPathTest) DirectedGraph graph = BuildSmallDirectedCyclicGraph(); BFS bfs(graph); - bfs.Run(0 /* start */, true /* isOutgoing */, [&](auto const & state) { return true; }); + bfs.Run(0 /* start */, true /* isOutgoing */, [&](auto const &) { return true; }); std::vector path = bfs.ReconstructPath(2, false /* reverse */); std::vector expected = {0, 1, 2}; diff --git a/routing/routing_tests/index_graph_tools.cpp b/routing/routing_tests/index_graph_tools.cpp index de1addf9f7..a553c387ea 100644 --- a/routing/routing_tests/index_graph_tools.cpp +++ b/routing/routing_tests/index_graph_tools.cpp @@ -145,8 +145,8 @@ double WeightedEdgeEstimator::CalcSegmentWeight(Segment const & segment, return it->second; } -double WeightedEdgeEstimator::GetUTurnPenalty(Purpose purpose) const { return 0.0; } -double WeightedEdgeEstimator::GetFerryLandingPenalty(Purpose purpose) const { return 0.0; } +double WeightedEdgeEstimator::GetUTurnPenalty(Purpose) const { return 0.0; } +double WeightedEdgeEstimator::GetFerryLandingPenalty(Purpose) const { return 0.0; } // TestIndexGraphTopology -------------------------------------------------------------------------- TestIndexGraphTopology::TestIndexGraphTopology(uint32_t numVertices) : m_numVertices(numVertices) {} diff --git a/routing/routing_tests/index_graph_tools.hpp b/routing/routing_tests/index_graph_tools.hpp index 4587a1388e..496e5c1416 100644 --- a/routing/routing_tests/index_graph_tools.hpp +++ b/routing/routing_tests/index_graph_tools.hpp @@ -131,7 +131,7 @@ public: IndexGraph & GetIndexGraph(NumMwmId mwmId) override; Geometry & GetGeometry(NumMwmId mwmId) override; - std::vector GetSpeedCameraInfo(Segment const & segment) override + std::vector GetSpeedCameraInfo(Segment const &) override { return {}; } diff --git a/routing/routing_tests/route_tests.cpp b/routing/routing_tests/route_tests.cpp index d9169089a2..00d999af4b 100644 --- a/routing/routing_tests/route_tests.cpp +++ b/routing/routing_tests/route_tests.cpp @@ -49,7 +49,7 @@ static vector const kTestNames = {"Street3", "", "", "", "", false}}; void GetTestRouteSegments(vector const & routePoints, vector const & turns, - vector const & streets, vector const & times, + vector const & streets, vector const &, vector & routeSegments) { RouteSegmentsFrom({}, routePoints, turns, streets, routeSegments); diff --git a/routing/routing_tests/routing_algorithm.cpp b/routing/routing_tests/routing_algorithm.cpp index 12fcf2229a..88851a6d6a 100644 --- a/routing/routing_tests/routing_algorithm.cpp +++ b/routing/routing_tests/routing_algorithm.cpp @@ -45,7 +45,7 @@ void UndirectedGraph::GetOutgoingEdgesList(astar::VertexData con GetEdgesList(vertexData.m_vertex, true /* isOutgoing */, adj); } -double UndirectedGraph::HeuristicCostEstimate(Vertex const & v, Vertex const & w) +double UndirectedGraph::HeuristicCostEstimate(Vertex const &, Vertex const &) { return 0.0; } diff --git a/routing/routing_tests/routing_session_test.cpp b/routing/routing_tests/routing_session_test.cpp index 518ca6e7fa..439a329298 100644 --- a/routing/routing_tests/routing_session_test.cpp +++ b/routing/routing_tests/routing_session_test.cpp @@ -70,8 +70,8 @@ public: return m_code; } - bool FindClosestProjectionToRoad(m2::PointD const & point, m2::PointD const & direction, - double radius, EdgeProj & proj) override + bool FindClosestProjectionToRoad(m2::PointD const & /* point */, m2::PointD const & /* direction */, + double /* radius */, EdgeProj & /* proj */) override { return false; } @@ -102,8 +102,8 @@ public: return m_returnCodes[m_returnCodesIdx++]; } - bool FindClosestProjectionToRoad(m2::PointD const & point, m2::PointD const & direction, - double radius, EdgeProj & proj) override + bool FindClosestProjectionToRoad(m2::PointD const & /* point */, m2::PointD const & /* direction */, + double /* radius */, EdgeProj & /* proj */) override { return false; } @@ -209,7 +209,7 @@ void FillSubroutesInfo(Route & route, vector const & turns /* = {Route::SubrouteAttrs(junctions.front(), junctions.back(), 0, kTestSegments.size())})); } -void TestMovingByUpdatingLat(SessionStateTest const & sessionState, vector const & lats, +void TestMovingByUpdatingLat(SessionStateTest const & /* sessionState */, vector const & lats, location::GpsInfo const & info, RoutingSession & session) { location::GpsInfo uptInfo(info); diff --git a/routing/routing_tests/turns_generator_test.cpp b/routing/routing_tests/turns_generator_test.cpp index 9573da75c7..98b8fe52be 100644 --- a/routing/routing_tests/turns_generator_test.cpp +++ b/routing/routing_tests/turns_generator_test.cpp @@ -36,8 +36,8 @@ public: TUnpackedPathSegments const & GetSegments() const override { return m_segments; } - void GetPossibleTurns(SegmentRange const & segmentRange, m2::PointD const & junctionPoint, - size_t & ingoingCount, TurnCandidates & outgoingTurns) const override + void GetPossibleTurns(SegmentRange const & /* segmentRange */, m2::PointD const & /* junctionPoint */, + size_t & /* ingoingCount */, TurnCandidates & outgoingTurns) const override { outgoingTurns.candidates.emplace_back(0.0, Segment(), ftypes::HighwayClass::Tertiary, false); outgoingTurns.isCandidatesAngleValid = false; diff --git a/routing/ruler_router.cpp b/routing/ruler_router.cpp index 9cabe7dabd..d1e985c3a5 100644 --- a/routing/ruler_router.cpp +++ b/routing/ruler_router.cpp @@ -10,7 +10,7 @@ void RulerRouter::ClearState() { } -void RulerRouter::SetGuides(GuidesTracks && guides) { /*m_guides = GuidesConnections(guides);*/ } +void RulerRouter::SetGuides(GuidesTracks && /* guides */) { /*m_guides = GuidesConnections(guides);*/ } /* Ruler router doesn't read roads graph and uses only checkpoints to build a route. @@ -45,10 +45,8 @@ void RulerRouter::SetGuides(GuidesTracks && guides) { /*m_guides = GuidesConnect * m_subroutes.size() == m_routeSegments.size()-1 */ -RouterResultCode RulerRouter::CalculateRoute(Checkpoints const & checkpoints, - m2::PointD const & startDirection, - bool adjustToPrevRoute, - RouterDelegate const & delegate, Route & route) +RouterResultCode RulerRouter::CalculateRoute(Checkpoints const & checkpoints, m2::PointD const &, bool, + RouterDelegate const &, Route & route) { vector const & points = checkpoints.GetPoints(); size_t const count = points.size(); @@ -120,9 +118,7 @@ RouterResultCode RulerRouter::CalculateRoute(Checkpoints const & checkpoints, return RouterResultCode::NoError; } -bool RulerRouter::FindClosestProjectionToRoad(m2::PointD const & point, - m2::PointD const & direction, double radius, - EdgeProj & proj) +bool RulerRouter::FindClosestProjectionToRoad(m2::PointD const &, m2::PointD const &, double, EdgeProj &) { // Ruler router has no connection to road graph. return false; diff --git a/routing/single_vehicle_world_graph.cpp b/routing/single_vehicle_world_graph.cpp index 1265d523ba..9a4042204e 100644 --- a/routing/single_vehicle_world_graph.cpp +++ b/routing/single_vehicle_world_graph.cpp @@ -77,9 +77,8 @@ void SingleVehicleWorldGraph::CheckAndProcessTransitFeatures(Segment const & par jointEdges.insert(jointEdges.end(), newCrossMwmEdges.begin(), newCrossMwmEdges.end()); } -void SingleVehicleWorldGraph::GetEdgeList( - astar::VertexData const & vertexData, bool isOutgoing, - bool useRoutingOptions, bool useAccessConditional, SegmentEdgeListT & edges) +void SingleVehicleWorldGraph::GetEdgeList(astar::VertexData const & vertexData, bool isOutgoing, + bool useRoutingOptions, bool, SegmentEdgeListT & edges) { CHECK_NOT_EQUAL(m_mode, WorldGraphMode::LeapsOnly, ()); @@ -94,10 +93,9 @@ void SingleVehicleWorldGraph::GetEdgeList( GetTwins(segment, isOutgoing, useRoutingOptions, edges); } -void SingleVehicleWorldGraph::GetEdgeList( - astar::VertexData const & parentVertexData, Segment const & parent, - bool isOutgoing, bool useAccessConditional, JointEdgeListT & jointEdges, - WeightListT & parentWeights) +void SingleVehicleWorldGraph::GetEdgeList(astar::VertexData const & parentVertexData, + Segment const & parent, bool isOutgoing, bool, JointEdgeListT & jointEdges, + WeightListT & parentWeights) { // Fake segments aren't processed here. All work must be done // on the IndexGraphStarterJoints abstraction-level. @@ -117,8 +115,7 @@ void SingleVehicleWorldGraph::GetEdgeList( ASSERT_EQUAL(jointEdges.size(), parentWeights.size(), ()); } -LatLonWithAltitude const & SingleVehicleWorldGraph::GetJunction(Segment const & segment, - bool front) +LatLonWithAltitude const & SingleVehicleWorldGraph::GetJunction(Segment const & segment, bool front) { return GetRoadGeometry(segment.GetMwmId(), segment.GetFeatureId()) .GetJunction(segment.GetPointId(front)); diff --git a/routing/speed_camera_manager.cpp b/routing/speed_camera_manager.cpp index 0ee1cec801..faa4619b4c 100644 --- a/routing/speed_camera_manager.cpp +++ b/routing/speed_camera_manager.cpp @@ -329,7 +329,7 @@ bool SpeedCameraManager::SetNotificationFlags(double passedDistanceMeters, doubl UNREACHABLE(); } -bool SpeedCameraManager::NeedToUpdateClosestCamera(double passedDistanceMeters, double speedMpS, +bool SpeedCameraManager::NeedToUpdateClosestCamera(double passedDistanceMeters, double, SpeedCameraOnRoute const & nextCamera) { auto const distToNewCameraMeters = nextCamera.m_distFromBeginMeters - passedDistanceMeters; @@ -371,8 +371,7 @@ void SpeedCameraManager::SendNotificationStat(double passedDistanceMeters, doubl mercator::ToLatLon(camera.m_position))); } -void SpeedCameraManager::SendEnterZoneStat(double distToCameraMeters, double speedMpS, - SpeedCameraOnRoute const & camera) +void SpeedCameraManager::SendEnterZoneStat(double, double, SpeedCameraOnRoute const &) { using strings::to_string; diff --git a/routing/transit_world_graph.cpp b/routing/transit_world_graph.cpp index f734ce954b..286928b71a 100644 --- a/routing/transit_world_graph.cpp +++ b/routing/transit_world_graph.cpp @@ -24,9 +24,8 @@ TransitWorldGraph::TransitWorldGraph(unique_ptr crossMwmGraph, CHECK(m_estimator, ()); } -void TransitWorldGraph::GetEdgeList(astar::VertexData const & vertexData, - bool isOutgoing, bool useRoutingOptions, - bool useAccessConditional, SegmentEdgeListT & edges) +void TransitWorldGraph::GetEdgeList(astar::VertexData const & vertexData, bool isOutgoing, + bool useRoutingOptions, bool, SegmentEdgeListT & edges) { auto const & segment = vertexData.m_vertex; auto & transitGraph = GetTransitGraph(segment.GetMwmId()); @@ -69,10 +68,8 @@ void TransitWorldGraph::GetEdgeList(astar::VertexData cons edges.append(fakeFromReal.begin(), fakeFromReal.end()); } -void TransitWorldGraph::GetEdgeList( - astar::VertexData const & parentVertexData, Segment const & segment, - bool isOutgoing, bool useAccessConditional, JointEdgeListT & edges, - WeightListT & parentWeights) +void TransitWorldGraph::GetEdgeList(astar::VertexData const &, Segment const &, bool, bool, + JointEdgeListT &, WeightListT &) { CHECK(false, ("TransitWorldGraph does not support Joints mode.")); } diff --git a/routing/world_graph.cpp b/routing/world_graph.cpp index bfa741b519..bc71859b51 100644 --- a/routing/world_graph.cpp +++ b/routing/world_graph.cpp @@ -52,26 +52,23 @@ SpeedInUnits WorldGraph::GetSpeedLimit(Segment const &) return {}; } -void WorldGraph::SetAStarParents(bool forward, Parents & parents) {} -void WorldGraph::SetAStarParents(bool forward, Parents & parents) {} +void WorldGraph::SetAStarParents(bool, Parents &) {} +void WorldGraph::SetAStarParents(bool, Parents &) {} void WorldGraph::DropAStarParents() {} -bool WorldGraph::AreWavesConnectible(Parents & forwardParents, Segment const & commonVertex, - Parents & backwardParents) +bool WorldGraph::AreWavesConnectible(Parents &, Segment const &, Parents &) { + return true; +} + +bool WorldGraph::AreWavesConnectible(Parents &, JointSegment const &, Parents &, + FakeConverterT const &) { return true; } -bool WorldGraph::AreWavesConnectible(Parents & forwardParents, JointSegment const & commonVertex, - Parents & backwardParents, - FakeConverterT const & fakeFeatureConverter) -{ - return true; -} +void WorldGraph::SetRoutingOptions(RoutingOptions) {} -void WorldGraph::SetRoutingOptions(RoutingOptions /* routingOption */) {} - -void WorldGraph::ForEachTransition(NumMwmId numMwmId, bool isEnter, TransitionFnT const & fn) +void WorldGraph::ForEachTransition(NumMwmId, bool, TransitionFnT const &) { } @@ -80,7 +77,7 @@ CrossMwmGraph & WorldGraph::GetCrossMwmGraph() UNREACHABLE(); } -RouteWeight WorldGraph::GetCrossBorderPenalty(NumMwmId mwmId1, NumMwmId mwmId2) +RouteWeight WorldGraph::GetCrossBorderPenalty(NumMwmId, NumMwmId) { return RouteWeight(0); } diff --git a/storage/country_tree.cpp b/storage/country_tree.cpp index 3b5b08a07a..23d23aeee7 100644 --- a/storage/country_tree.cpp +++ b/storage/country_tree.cpp @@ -34,9 +34,8 @@ public: virtual void InsertOldMwmMapping(CountryId const & newId, CountryId const & oldId) = 0; virtual void InsertAffiliation(CountryId const & countryId, string const & affilation) = 0; virtual void InsertCountryNameSynonym(CountryId const & countryId, string const & synonym) = 0; - virtual void InsertMwmTopCityGeoId(CountryId const & countryId, uint64_t const & geoObjectId) {} - virtual void InsertTopCountryGeoIds(CountryId const & countryId, - vector const & geoObjectIds) + virtual void InsertMwmTopCityGeoId(CountryId const & /* countryId */, uint64_t const & /* geoObjectId */) {} + virtual void InsertTopCountryGeoIds(CountryId const & /* countryId */, vector const & /* geoObjectIds */) { } virtual OldMwmMapping GetMapping() const = 0; diff --git a/storage/storage.cpp b/storage/storage.cpp index 38706af06c..0ed0f6f958 100644 --- a/storage/storage.cpp +++ b/storage/storage.cpp @@ -281,7 +281,7 @@ Storage::WorldStatus Storage::GetForceDownloadWorlds(std::vector return Packet(lat, lon, timestamp); } - static traffic::SpeedGroup GetSpeedGroup(Packet const & packet) + static traffic::SpeedGroup GetSpeedGroup(Packet const & /* packet */) { return traffic::SpeedGroup::Unknown; } diff --git a/tracking/connection.cpp b/tracking/connection.cpp index 75192c1661..b3402a35e6 100644 --- a/tracking/connection.cpp +++ b/tracking/connection.cpp @@ -12,8 +12,7 @@ uint32_t constexpr kSocketTimeoutMs = 10000; namespace tracking { -Connection::Connection(std::unique_ptr socket, std::string const & host, - uint16_t port, bool isHistorical) +Connection::Connection(std::unique_ptr socket, std::string const & host, uint16_t port, bool) : m_socket(std::move(socket)), m_host(host), m_port(port) { if (!m_socket) diff --git a/transit/transit_serdes.hpp b/transit/transit_serdes.hpp index 2f7c2a7278..8c3f3f4879 100644 --- a/transit/transit_serdes.hpp +++ b/transit/transit_serdes.hpp @@ -61,6 +61,7 @@ public: std::enable_if_t::value || std::is_same::value> operator()( T t, char const * name = nullptr) const { + UNUSED_VALUE(name); WriteVarInt(m_sink, t); } @@ -210,21 +211,21 @@ public: std::enable_if_t<(std::is_integral::value || std::is_enum::value) && !std::is_same::value && !std::is_same::value && !std::is_same::value && !std::is_same::value> - operator()(T & t, char const * name = nullptr) + operator()(T & t, char const * /* name */ = nullptr) { ReadPrimitiveFromSource(m_source, t); } template std::enable_if_t::value || std::is_same::value> operator()( - T & t, char const * name = nullptr) + T & t, char const * /* name */ = nullptr) { t = ReadVarUint(m_source); } template std::enable_if_t::value || std::is_same::value> operator()( - T & t, char const * name = nullptr) + T & t, char const * /* name */ = nullptr) { t = ReadVarInt(m_source); } @@ -288,7 +289,7 @@ public: idBundle.Visit(*this); } - void operator()(Edge & e, char const * name = nullptr) + void operator()(Edge & e, char const * /* name */ = nullptr) { (*this)(e.m_stop1Id); (*this)(e.m_stop2Id); @@ -435,7 +436,7 @@ public: template std::enable_if_t::value || std::is_enum::value, void> operator()( - T & t, char const * name = nullptr) + T & t, char const * /* name */ = nullptr) { ReadPrimitiveFromSource(m_source, t); } diff --git a/transit/world_feed/world_feed_tests/world_feed_tests.cpp b/transit/world_feed/world_feed_tests/world_feed_tests.cpp index f8ec994c1f..9df42353eb 100644 --- a/transit/world_feed/world_feed_tests/world_feed_tests.cpp +++ b/transit/world_feed/world_feed_tests/world_feed_tests.cpp @@ -60,7 +60,7 @@ void TestInterval(WeekdaysInterval const & interval, size_t start, size_t end, TEST_EQUAL(interval.m_status, status, ()); } -void TestExceptionIntervals(gtfs::CalendarDates const & dates, size_t intervalsCount, +void TestExceptionIntervals(gtfs::CalendarDates const & dates, size_t /* intervalsCount */, std::string const & resOpeningHoursStr) { osmoh::TRuleSequences rules;