From 049d51911f04c70cb48ebbd219404ebe2f27e903 Mon Sep 17 00:00:00 2001 From: abv Date: Fri, 4 Apr 2014 08:48:45 +0400 Subject: [PATCH] New compiler warnings (vc10 64-bit) fixed in BOPCol_TBB.hxx --- src/BOPCol/BOPCol_TBB.hxx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/BOPCol/BOPCol_TBB.hxx b/src/BOPCol/BOPCol_TBB.hxx index bc313a6b2f..0caa99d99d 100755 --- a/src/BOPCol/BOPCol_TBB.hxx +++ b/src/BOPCol/BOPCol_TBB.hxx @@ -92,8 +92,8 @@ template & aBR ) const{ - Standard_Size i, iBeg, iEnd; + void operator()( const flexible_range& aBR ) const{ + Standard_Integer i, iBeg, iEnd; // TypeSolverVector& aV=*myPV; // @@ -123,13 +123,13 @@ template (0,aNb), aFunctor); + flexible_for(flexible_range(0,aNb), aFunctor); } else { - aFunctor.operator()(flexible_range(0,aNb)); + aFunctor.operator()(flexible_range(0,aNb)); } } }; @@ -159,8 +159,8 @@ template & aBR ) const{ - Standard_Size i, iBeg, iEnd; + void operator()( const flexible_range& aBR ) const{ + Standard_Integer i, iBeg, iEnd; TypeContext aCtx; // if (myContext.IsNull()) { @@ -205,14 +205,14 @@ template (0,aNb), aFunctor); + flexible_for(flexible_range(0,aNb), aFunctor); } else { aFunctor.SetContext(aCtx); - aFunctor.operator()(flexible_range(0,aNb)); + aFunctor.operator()(flexible_range(0,aNb)); } } };