mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-10 17:40:24 +08:00
- Replaces `push_back(T(...))` with `emplace_back(...)` where applicable. - Replaces `size() == 0` / `size() != 0` checks with `empty()` / `!empty()`. - Simplifies trivial constructors/destructors to `= default` and removes redundant `(void)` parameter lists.