Part: modernize C++: replace 'typedef' with 'using'

This commit is contained in:
wmayer
2022-08-29 19:31:50 +02:00
parent 7eb30ca5c7
commit c6a208bb18
30 changed files with 58 additions and 58 deletions

View File

@@ -2473,7 +2473,7 @@ PyObject* _getSupportIndex(const char* suppStr, TopoShape* ts, TopoDS_Shape supp
PyObject* TopoShapePy::proximity(PyObject *args)
{
typedef BRepExtrema_MapOfIntegerPackedMapOfInteger BRepExtrema_OverlappedSubShapes;
using BRepExtrema_OverlappedSubShapes = BRepExtrema_MapOfIntegerPackedMapOfInteger;
PyObject* ps2;
Standard_Real tol = Precision::Confusion();