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_loader_base.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_loader_base.hpp')
-rw-r--r--indexer/feature_loader_base.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indexer/feature_loader_base.hpp b/indexer/feature_loader_base.hpp
index 4fa2fc5c60..1ed33b20d0 100644
--- a/indexer/feature_loader_base.hpp
+++ b/indexer/feature_loader_base.hpp
@@ -58,11 +58,11 @@ namespace feature
virtual ~LoaderBase() {}
// It seems like no need to store a copy of buffer (see FeaturesVector).
- typedef char const * BufferT;
+ typedef char const * TBuffer;
/// @name Initialize functions.
//@{
- void Init(BufferT data);
+ void Init(TBuffer data);
inline void InitFeature(FeatureType * p) { m_pF = p; }
void ResetGeometry();
@@ -99,7 +99,7 @@ namespace feature
SharedLoadInfo const & m_Info;
FeatureType * m_pF;
- BufferT m_Data;
+ TBuffer m_Data;
static uint32_t const m_TypesOffset = 1;
uint32_t m_CommonOffset, m_Header2Offset;