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/base
diff options
context:
space:
mode:
authorAlex Zolotarev <deathbaba@gmail.com>2013-02-01 05:19:45 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:49:38 +0300
commit01480c108954bfeb912b9adca076bc1864f3e78c (patch)
tree70914be3acaff29d4847629dac38dd64065318fc /base
parent2295e03d517268605dfe0159bc10f4a4438c821b (diff)
Generic Warning Fixes
Diffstat (limited to 'base')
-rw-r--r--base/commands_queue.cpp2
-rw-r--r--base/commands_queue.hpp1
2 files changed, 1 insertions, 2 deletions
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: