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

This commit is contained in:
wmayer
2022-08-29 18:36:52 +02:00
parent fd4e2c967b
commit 7eb30ca5c7
6 changed files with 22 additions and 22 deletions

View File

@@ -69,7 +69,7 @@ public:
}
};
typedef std::map<TopoDS_Edge, std::vector<FaceSplitEdge>,TopoDSLess<TopoDS_Edge> > result_type;
using result_type = std::map<TopoDS_Edge, std::vector<FaceSplitEdge>,TopoDSLess<TopoDS_Edge> >;
result_type &result() {return mvEdgeSplitPoints;}