mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-08-12 18:51:45 +08:00
bdddadec19
In C++, delete/delete[] on nullptr and free(NULL) are guaranteed no-ops. This removes redundant null-check guards before these calls across 39 files, reducing code noise without behavioral change. Also simplifies map value cleanup in BRepClass3d_SolidExplorer by using iterator reference instead of redundant hash lookups.