rename variable for clarity

This commit is contained in:
Dane Springmeyer 2013-05-06 12:38:41 -07:00
parent 4f40993ee6
commit 944eb5e2f7

View File

@ -57,9 +57,9 @@ struct evaluate : boost::static_visitor<T1>
return attr.value<value_type,feature_type>(feature_);
}
value_type operator() (geometry_type_attribute const& attr) const
value_type operator() (geometry_type_attribute const& geom) const
{
return attr.value<value_type,feature_type>(feature_);
return geom.value<value_type,feature_type>(feature_);
}
value_type operator() (binary_node<tags::logical_and> const & x) const