C++98 compatibility (remove C++11 staff)

This commit is contained in:
vsr 2016-02-20 10:20:57 +03:00
parent 5218291db4
commit c31ad1186e

View File

@ -247,7 +247,7 @@ bool SMESHGUI_Selection::isQuadratic( int ind ) const
if ( idSource->_is_nil() )
return false;
SMESHGUI_ConvToQuadOp::MeshDestinationType meshTgtType = SMESHGUI_ConvToQuadOp::DestinationMesh( idSource );
if ( meshTgtType & SMESHGUI_ConvToQuadOp::MeshDestinationType::Linear )
if ( meshTgtType & SMESHGUI_ConvToQuadOp::Linear )
return true;
return false;
}