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:
authorvng <viktor.govako@gmail.com>2015-11-26 18:07:28 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:02:56 +0300
commit1923f01008d7de415255638cfc5c280b94f712ab (patch)
tree13f823e90314b1dfe5381343adb540d66811be8c /indexer/feature_data.hpp
parent5e38e4ee25e60db82e2fc2e6645755a367352472 (diff)
Review fixes.
Diffstat (limited to 'indexer/feature_data.hpp')
-rw-r--r--indexer/feature_data.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/feature_data.hpp b/indexer/feature_data.hpp
index c1de7d4c4d..26f37d5c00 100644
--- a/indexer/feature_data.hpp
+++ b/indexer/feature_data.hpp
@@ -277,7 +277,7 @@ public:
/// @param[in] fullStoring \n
/// - true when saving in temporary files after first generation step \n
/// - false when final mwm saving
- template <class SinkT> void Write(SinkT & sink, bool fullStoring) const
+ template <class TSink> void Write(TSink & sink, bool fullStoring) const
{
uint8_t const header = GetHeader();
@@ -295,7 +295,7 @@ public:
BaseT::Write(sink, header);
}
- template <class SrcT> void Read(SrcT & src)
+ template <class TSource> void Read(TSource & src)
{
using namespace feature;