mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0024834: Allocation of memory for exception message must not throw another exception
Update of test case to eliminate 64-bit architecture from testing
This commit is contained in:
parent
bc02c7cab1
commit
2d7b28ac98
@ -2295,6 +2295,11 @@ static Standard_Integer OCC24834 (Draw_Interpretor& di, Standard_Integer n, cons
|
|||||||
std::cout << "Usage : " << a[0] << "\n";
|
std::cout << "Usage : " << a[0] << "\n";
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (sizeof (char*) > 4) {
|
||||||
|
std::cout << "64-bit architecture is not supported.\n";
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
NCollection_List<MyStubObject> aList;
|
NCollection_List<MyStubObject> aList;
|
||||||
const Standard_Integer aSmallBlockSize = 40;
|
const Standard_Integer aSmallBlockSize = 40;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user