Remove old GCC<=8 (#20508)

GCC version is always greater than 8
This commit is contained in:
mosfet80
2025-03-29 12:21:36 +01:00
committed by GitHub
parent 9cfc345448
commit d5004148b0
6 changed files with 0 additions and 24 deletions

View File

@@ -82,11 +82,7 @@ std::unique_ptr<Part::GeometryExtension> ExternalGeometryExtension::copy() const
copyAttributes(cpy.get());
#if defined(__GNUC__) && (__GNUC__ <= 4)
return std::move(cpy);
#else
return cpy;
#endif
}
PyObject* ExternalGeometryExtension::getPyObject()