Removed some "auto" keywords

This commit is contained in:
Clement Jamin 2014-09-12 17:04:26 +02:00
parent d6255a16f0
commit 121fabd264
1 changed files with 1 additions and 3 deletions

View File

@ -189,9 +189,7 @@ public:
const Weighted_point_d & p, const int i) const
{
Point_drop_weight_d pdw = m_kernel.point_drop_weight_d_object();
auto pp = pdw(p);
auto ddsd = m_kernel.compute_coordinate_d_object();
ddsd(pp, i);
m_kernel.compute_coordinate_d_object()(pdw(p), i);
return m_kernel.compute_coordinate_d_object()(pdw(p), i);
}
};