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:
authorSergey Magidovich <mgsergio@mapswithme.com>2015-09-29 17:55:28 +0300
committerSergey Magidovich <mgsergio@mapswithme.com>2015-09-30 19:09:53 +0300
commite510c6564293ee8c01fec815db220064e625b0f1 (patch)
tree8a3dc8d3ebed49f383f9220425ff2cbc00d345d5 /indexer/feature.hpp
parent2f884e795c0a4f324d896ed734d28c55bacdfae6 (diff)
Remove stupid comments. Truncate all coordinates to five numbers after decimal point.
Get rid of default values. Small Fixes. Rename variables. Rename type. Fix according to notes.
Diffstat (limited to 'indexer/feature.hpp')
-rw-r--r--indexer/feature.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indexer/feature.hpp b/indexer/feature.hpp
index 5407b2390b..bcd8211736 100644
--- a/indexer/feature.hpp
+++ b/indexer/feature.hpp
@@ -29,9 +29,9 @@ class FeatureBase
public:
- using BufferT = char const *;
+ using TBuffer = char const *;
- void Deserialize(feature::LoaderBase * pLoader, BufferT buffer);
+ void Deserialize(feature::LoaderBase * pLoader, TBuffer buffer);
/// @name Parse functions. Do simple dispatching to m_pLoader.
//@{
@@ -151,7 +151,7 @@ class FeatureType : public FeatureBase
FeatureID m_id;
public:
- void Deserialize(feature::LoaderBase * pLoader, BufferT buffer);
+ void Deserialize(feature::LoaderBase * pLoader, TBuffer buffer);
inline void SetID(FeatureID const & id) { m_id = id; }
inline FeatureID GetID() const { return m_id; }