mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-08-07 13:57:33 +08:00
4d64ddc666
- 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.