From: skl Date: Tue, 23 Jan 2007 15:02:20 +0000 (+0000) Subject: Correction of compilation error. X-Git-Tag: V3_2_5pre1~8 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=2f7dfcc9ce46bf8a81314b970a822c0bb0400ea3;p=modules%2Fsmesh.git Correction of compilation error. --- diff --git a/src/SMESH/SMESH_Octree.cxx b/src/SMESH/SMESH_Octree.cxx index 5b224ae5d..eb8a7ec82 100644 --- a/src/SMESH/SMESH_Octree.cxx +++ b/src/SMESH/SMESH_Octree.cxx @@ -135,7 +135,7 @@ void SMESH_Octree::Compute() //================================================================= void SMESH_Octree::buildChildren() { - myChildren = new (SMESH_Octree*)[8]; + myChildren = new SMESH_Octree*[8]; gp_XYZ min = myBox->CornerMin(); gp_XYZ max = myBox->CornerMax();