From 2f7dfcc9ce46bf8a81314b970a822c0bb0400ea3 Mon Sep 17 00:00:00 2001 From: skl Date: Tue, 23 Jan 2007 15:02:20 +0000 Subject: [PATCH] Correction of compilation error. --- src/SMESH/SMESH_Octree.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.39.2