fix names

This commit is contained in:
Artem Pavlenko 2012-01-13 17:18:43 +00:00
parent 1617d8cc33
commit f2108ac11f

View file

@ -39,7 +39,7 @@ class feature_kv_iterator :
public:
typedef boost::tuple<std::string,value> value_type;
feature_kv_iterator (feature const& f, bool begin = false)
feature_kv_iterator (feature_impl const& f, bool begin = false)
: f_(f),
itr_( begin ? f_.ctx_->begin() : f_.ctx_->end()) {}
@ -63,7 +63,7 @@ private:
return kv_;
}
feature const& f_;
feature_impl const& f_;
map_type::const_iterator itr_;
mutable value_type kv_;