From af9cd9daa0565dd217c5239f5e49f2a96da98641 Mon Sep 17 00:00:00 2001 From: vng Date: Sun, 3 Jun 2012 20:56:22 +0300 Subject: [PATCH] [generator] Fix error typo. --- indexer/feature_data.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indexer/feature_data.cpp b/indexer/feature_data.cpp index b1f32a9a9b..dc8908e20b 100644 --- a/indexer/feature_data.cpp +++ b/indexer/feature_data.cpp @@ -109,7 +109,7 @@ void FeatureParams::AddTypes(FeatureParams const & rhs, uint32_t skipType2) uint32_t t = rhs.m_Types[i]; ftype::TruncValue(t, 2); if (t != skipType2) - m_Types.push_back(t); + m_Types.push_back(rhs.m_Types[i]); } } }