mirror of https://github.com/CGAL/cgal
Warning Fix
- Initialized temp_item to 0 to silence a warning.
This commit is contained in:
parent
85312f43e3
commit
dfd3acb4ef
|
|
@ -230,7 +230,7 @@ void Polyhedron_demo_mesh_3_plugin::mesh_3()
|
|||
|
||||
QApplication::setOverrideCursor(Qt::WaitCursor);
|
||||
|
||||
Scene_item* temp_item;
|
||||
Scene_item* temp_item = 0;
|
||||
if (NULL != poly_item)
|
||||
{
|
||||
Polyhedron* pMesh = poly_item->polyhedron();
|
||||
|
|
|
|||
Loading…
Reference in New Issue