0026586: Eliminate compile warnings obtained by building occt with vc14: declaration...
[occt.git] / src / FEmTool / FEmTool_LinearTension.cxx
index e5c2d8f..ea7e64f 100644 (file)
@@ -51,10 +51,10 @@ FEmTool_LinearTension::FEmTool_LinearTension(const Standard_Integer WorkDegree,
     FEmTool_ElementsOfRefMatrix Elem = FEmTool_ElementsOfRefMatrix(theBase, DerOrder);
     
     Standard_Integer maxDegree = WDeg+1;
-    math_IntegerVector Order(1,1,Min(4*(maxDegree/2+1),math::GaussPointsMax()));
+    math_IntegerVector anOrder(1,1,Min(4*(maxDegree/2+1),math::GaussPointsMax()));
     math_Vector Lower(1,1,-1.), Upper(1,1,1.); 
     
-    math_GaussSetIntegration anInt(Elem, Lower, Upper, Order);
+    math_GaussSetIntegration anInt(Elem, Lower, Upper, anOrder);
     MatrixElemts = anInt.Value();
   }