diff --git a/anim/value_interpolation.hpp b/anim/value_interpolation.hpp index 004428d1a7..29c32d26cf 100644 --- a/anim/value_interpolation.hpp +++ b/anim/value_interpolation.hpp @@ -9,7 +9,6 @@ namespace anim private: double m_startValue; - double m_curValue; double & m_outValue; double m_endValue; diff --git a/base/commands_queue.cpp b/base/commands_queue.cpp index 9e99858b64..8a784031a5 100644 --- a/base/commands_queue.cpp +++ b/base/commands_queue.cpp @@ -80,7 +80,7 @@ namespace core } CommandsQueue::Routine::Routine(CommandsQueue * parent, int idx) - : m_parent(parent), m_idx(idx), m_env(idx) + : m_parent(parent), m_env(idx) {} void CommandsQueue::Routine::Do() diff --git a/base/commands_queue.hpp b/base/commands_queue.hpp index 205aa277f7..9796732b0f 100644 --- a/base/commands_queue.hpp +++ b/base/commands_queue.hpp @@ -127,7 +127,6 @@ namespace core private: CommandsQueue * m_parent; - int m_idx; Environment m_env; public: diff --git a/coding/coding_tests/coder_util_test.cpp b/coding/coding_tests/coder_util_test.cpp index cb096785e0..ad7e1b8fda 100644 --- a/coding/coding_tests/coder_util_test.cpp +++ b/coding/coding_tests/coder_util_test.cpp @@ -4,14 +4,14 @@ #include "../coder_util.hpp" #include "../../base/logging.hpp" -namespace -{ - size_t FixedDstSizeInfiniteMemoryEncode(char const *, size_t, char *, size_t /*dstSize*/) - { - // LOG(LINFO, ("DstSize", dstSize)); - return -1U; - } -} +//namespace +//{ +// size_t FixedDstSizeInfiniteMemoryEncode(char const *, size_t, char *, size_t /*dstSize*/) +// { +// // LOG(LINFO, ("DstSize", dstSize)); +// return -1U; +// } +//} /* Commented because takes too much time after memory upgrage :) UNIT_TEST(FixedDstSizeCodeToStringInfiniteMemoryTest) diff --git a/coding/hex.hpp b/coding/hex.hpp index f8ebade922..22a82af389 100644 --- a/coding/hex.hpp +++ b/coding/hex.hpp @@ -48,6 +48,13 @@ inline string NumToHex(IntT n) return ToHex(buf, sizeof(buf)); } +/// Specialization to avoid warnings +template <> +inline string NumToHex(char c) +{ + return ToHex(&c, sizeof(c)); +} + inline string FromHex(void const * ptr, size_t size) { string result; result.resize(size / 2); diff --git a/coding/internal/file_data.hpp b/coding/internal/file_data.hpp index e5ec462ecb..5e01825312 100644 --- a/coding/internal/file_data.hpp +++ b/coding/internal/file_data.hpp @@ -34,7 +34,6 @@ public: string GetName() const { return m_FileName; } private: - uint64_t m_LastAccessPos; #ifdef OMIM_OS_BADA Osp::Io::File m_File; #else diff --git a/coding/zip_creator.cpp b/coding/zip_creator.cpp index 34131124c1..a7eb06b9c2 100644 --- a/coding/zip_creator.cpp +++ b/coding/zip_creator.cpp @@ -47,7 +47,8 @@ bool createZipFromPathDeflatedAndDefaultCompression(string const & filePath, str ZipHandle zip(zipFilePath); if (!zip.m_zipFile) return false; - zip_fileinfo zipInfo = { 0 }; + // Special syntax to initialize struct with zeroes + zip_fileinfo zipInfo = zip_fileinfo(); CreateTMZip(zipInfo.tmz_date); string fileName = filePath; my::GetNameFromFullPath(fileName); diff --git a/graphics/path_renderer.cpp b/graphics/path_renderer.cpp index 6c8d4a87fa..1e5b845c78 100644 --- a/graphics/path_renderer.cpp +++ b/graphics/path_renderer.cpp @@ -132,7 +132,7 @@ namespace graphics void PathRenderer::drawStipplePath(m2::PointD const * points, size_t pointsCount, double offset, Pen const * pen, double depth) { bool const hasRoundJoin = (pen->m_info.m_join == pen->m_info.ERoundJoin); - bool const hasBevelJoin = (pen->m_info.m_join == pen->m_info.EBevelJoin); +// bool const hasBevelJoin = (pen->m_info.m_join == pen->m_info.EBevelJoin); bool const hasJoin = (pen->m_info.m_join != pen->m_info.ENoJoin); float rawTileStartLen = 0; diff --git a/graphics/path_renderer.hpp b/graphics/path_renderer.hpp index 60e85401ea..5e303c8d1d 100644 --- a/graphics/path_renderer.hpp +++ b/graphics/path_renderer.hpp @@ -5,7 +5,7 @@ namespace graphics { - class Pen; + struct Pen; class PathRenderer : public AreaRenderer { diff --git a/graphics/skin_loader.hpp b/graphics/skin_loader.hpp index a594592256..7202c46e51 100644 --- a/graphics/skin_loader.hpp +++ b/graphics/skin_loader.hpp @@ -59,19 +59,21 @@ namespace graphics /// pointStyle-specific parameters string m_resID; +/// skin-page specific parameters + string m_fileName; + +/// + shared_ptr m_resourceManager; + /// skin-specific parameters vector > & m_caches; -/// skin-page specific parameters - string m_fileName; typedef list > > TResourceList; TResourceList m_resourceList; - shared_ptr m_resourceManager; - public: SkinLoader(shared_ptr const & resourceManager, diff --git a/graphics/text_renderer.cpp b/graphics/text_renderer.cpp index 6b6fcdc8bd..eaf4cfad65 100644 --- a/graphics/text_renderer.cpp +++ b/graphics/text_renderer.cpp @@ -13,12 +13,11 @@ namespace graphics { TextRenderer::Params::Params() - : m_drawTexts(true) +// : m_drawTexts(true) {} TextRenderer::TextRenderer(Params const & params) - : base_t(params), - m_drawTexts(params.m_drawTexts) + : base_t(params)//, m_drawTexts(params.m_drawTexts) {} void TextRenderer::drawStraightGlyph(m2::PointD const & ptPivot, diff --git a/graphics/text_renderer.hpp b/graphics/text_renderer.hpp index 119487303a..80e5596fb3 100644 --- a/graphics/text_renderer.hpp +++ b/graphics/text_renderer.hpp @@ -18,17 +18,17 @@ namespace graphics { private: - bool m_drawTexts; +// bool m_drawTexts; public: typedef ImageRenderer base_t; - struct Params : base_t::Params - { - bool m_drawTexts; - Params(); - }; +// struct Params : base_t::Params +// { +// bool m_drawTexts; +// Params(); +// }; TextRenderer(Params const & params); diff --git a/map/draw_processor.hpp b/map/draw_processor.hpp index c2582b6b27..5dab0a1148 100644 --- a/map/draw_processor.hpp +++ b/map/draw_processor.hpp @@ -178,8 +178,6 @@ namespace get_pts double m_startLength; double m_endLength; - double m_fontSize; - void StartPL(m2::PointD const & pt); void EndPL(); diff --git a/map/navigator.cpp b/map/navigator.cpp index 3ecf161d3b..349fa5440f 100644 --- a/map/navigator.cpp +++ b/map/navigator.cpp @@ -168,7 +168,7 @@ ScreenBase const Navigator::ShrinkInto(ScreenBase const & screen, m2::RectD boun bool Navigator::CanRotateInto(ScreenBase const & screen, m2::RectD const & boundRect) { - m2::RectD clipRect = screen.ClipRect(); +// m2::RectD clipRect = screen.ClipRect(); //@TODO return false; } diff --git a/search/params.cpp b/search/params.cpp index b382552a9d..244db35e1a 100644 --- a/search/params.cpp +++ b/search/params.cpp @@ -43,10 +43,9 @@ bool SearchParams::IsEqualCommon(SearchParams const & rhs) const string DebugPrint(SearchParams const & params) { - string s = ("search::SearchParams: "); - s += "Query = " + params.m_query; - s += "Mode = " + params.m_searchMode; - return s; + ostringstream stream; + stream << "search::SearchParams: Query = " << params.m_query << " Mode = " << params.m_searchMode; + return stream.str(); } } // namespace search diff --git a/search/search_engine.cpp b/search/search_engine.cpp index b0e78991cb..4e828dfdcf 100644 --- a/search/search_engine.cpp +++ b/search/search_engine.cpp @@ -76,7 +76,6 @@ Engine::Engine(IndexType const * pIndex, Reader * pCategoriesR, ModelReaderPtr polyR, ModelReaderPtr countryR, string const & lang) : m_readyThread(false), - m_pIndex(pIndex), m_pData(new EngineData(pCategoriesR, polyR, countryR)) { InitSuggestions doInit; diff --git a/search/search_engine.hpp b/search/search_engine.hpp index fc7feff073..8de965c350 100644 --- a/search/search_engine.hpp +++ b/search/search_engine.hpp @@ -71,7 +71,6 @@ private: SearchParams m_params; m2::RectD m_viewport; - Index const * m_pIndex; scoped_ptr m_pQuery; scoped_ptr m_pData; };