mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-19 13:40: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:
|
||||
|
||||
NCollection_LocalArray<Standard_Integer, 512> myLocArray;
|
||||
NCollection_LocalArray<Standard_Integer, 32> myLocArray;
|
||||
NCollection_Array1<Standard_Integer> Array;
|
||||
|
||||
};
|
||||
|
@@ -338,7 +338,7 @@ protected:
|
||||
|
||||
private:
|
||||
|
||||
NCollection_LocalArray<Standard_Real, 512> myLocArray;
|
||||
NCollection_LocalArray<Standard_Real, 32> myLocArray;
|
||||
NCollection_Array1<Standard_Real> Array;
|
||||
|
||||
};
|
||||
|
Reference in New Issue
Block a user