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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/stats
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@mapswithme.com>2014-03-18 17:11:55 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:12:58 +0300
commit86ffb62add8edc3ad412805b96873fef00d5bb20 (patch)
tree9e7b1670fc83be7540d53d41965b705b7eb3a224 /stats
parent2f98749ea87e2bafc8785f52920988b482a913f7 (diff)
Warning fixes
Diffstat (limited to 'stats')
-rw-r--r--stats/client/event_writer.cpp2
-rw-r--r--stats/client/event_writer.hpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/stats/client/event_writer.cpp b/stats/client/event_writer.cpp
index 83d5ff8c83..103ce5807b 100644
--- a/stats/client/event_writer.cpp
+++ b/stats/client/event_writer.cpp
@@ -8,7 +8,7 @@ namespace stats
{
EventWriter::EventWriter(string const & uniqueClientId, string const & dbPath)
- : m_cnt(0), m_db(0), m_path(dbPath), m_uid(0)
+ : /*m_cnt(0), m_db(0), */m_path(dbPath)/*, m_uid(0)*/
{
}
diff --git a/stats/client/event_writer.hpp b/stats/client/event_writer.hpp
index 2b0ba744ac..a3f2e266f2 100644
--- a/stats/client/event_writer.hpp
+++ b/stats/client/event_writer.hpp
@@ -27,10 +27,10 @@ private:
bool OpenDb(string const & path);
private:
- unsigned int m_cnt;
- void * m_db; // @todo Replace with ours impl
+// unsigned int m_cnt;
+// void * m_db; // @todo Replace with ours impl
string m_path;
- unsigned long long m_uid;
+// unsigned long long m_uid;
};
} // namespace stats