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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarafei Praliaskouski <komzpa@gmail.com>2013-10-03 15:59:02 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:03:17 +0300
commita652c48021d7feb65d8b4bd309abca8470b8bc48 (patch)
tree5528a1e90597c87cdb730b37dea65a3eef962b11 /indexer/drawing_rules.hpp
parent74b80de5e3c101a77b615121d9352d68135f067d (diff)
[indexer] remove obsolete ID2
Diffstat (limited to 'indexer/drawing_rules.hpp')
-rw-r--r--indexer/drawing_rules.hpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/indexer/drawing_rules.hpp b/indexer/drawing_rules.hpp
index a266f96a0a..ed9937f293 100644
--- a/indexer/drawing_rules.hpp
+++ b/indexer/drawing_rules.hpp
@@ -23,7 +23,7 @@ namespace drule
{
class BaseRule
{
- mutable buffer_vector<uint32_t, 4> m_id1, m_id2;
+ mutable buffer_vector<uint32_t, 4> m_id1;
char m_type; // obsolete for new styles, can be removed
public:
@@ -40,14 +40,6 @@ namespace drule
void MakeEmptyID(size_t threadSlot);
void MakeEmptyID();
- uint32_t GetID2(size_t threadSlot) const;
-
- void SetID2(size_t threadSlot, uint32_t id) const;
-
- void MakeEmptyID2(size_t threadSlot);
-
- void MakeEmptyID2();
-
void SetType(char type) { m_type = type; }
inline char GetType() const { return m_type; }