Fix warning in PLY_reader

This commit is contained in:
Maxime Gimeno 2018-12-05 10:15:49 +01:00
parent 6c3e3252a9
commit 665c66e557
1 changed files with 1 additions and 1 deletions

View File

@ -156,7 +156,7 @@ private:
virtual void assign (PLY_reader& reader, typename Point_set::Index index)
{
Type t;
Type t{};
reader.assign (t, m_name.c_str());
put(m_pmap, index, t);
}