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

@@ -101,8 +101,8 @@ PyObject * GeometryDefaultExtension<T>::getPyObject()
namespace Part {
// ----------------------------- Template specialisations----------------------------------------------------
//typedef Part::GeometryDefaultExtension<long> GeometryIntExtension;
//typedef Part::GeometryStringExtension<std::string> GeometryStringExtension;
//using GeometryIntExtension = Part::GeometryDefaultExtension<long>;
//using GeometryStringExtension = Part::GeometryStringExtension<std::string>;
// ---------- GeometryIntExtension ----------
TYPESYSTEM_SOURCE_TEMPLATE_T(Part::GeometryIntExtension,Part::GeometryPersistenceExtension)