1
0
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:
kgv
2019-03-12 10:51:40 +03:00
parent 31894e9a1b
commit 0652ae3717
2 changed files with 2 additions and 2 deletions

View File

@@ -263,7 +263,7 @@ protected:
private:
NCollection_LocalArray<Standard_Integer, 512> myLocArray;
NCollection_LocalArray<Standard_Integer, 32> myLocArray;
NCollection_Array1<Standard_Integer> Array;
};

View File

@@ -338,7 +338,7 @@ protected:
private:
NCollection_LocalArray<Standard_Real, 512> myLocArray;
NCollection_LocalArray<Standard_Real, 32> myLocArray;
NCollection_Array1<Standard_Real> Array;
};