mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-24 13:50:49 +03:00
0030552: Foundation Classes - Stack overflow due to math_SingleTab static array size
math_Vector, math_IntegerVector - static size of NCollection_LocalArray has been reduced from 512 to 32.
This commit is contained in:
@@ -263,7 +263,7 @@ protected:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
NCollection_LocalArray<Standard_Integer, 512> myLocArray;
|
NCollection_LocalArray<Standard_Integer, 32> myLocArray;
|
||||||
NCollection_Array1<Standard_Integer> Array;
|
NCollection_Array1<Standard_Integer> Array;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
@@ -338,7 +338,7 @@ protected:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
NCollection_LocalArray<Standard_Real, 512> myLocArray;
|
NCollection_LocalArray<Standard_Real, 32> myLocArray;
|
||||||
NCollection_Array1<Standard_Real> Array;
|
NCollection_Array1<Standard_Real> Array;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user