Coding - Clang-Tidy apply with refactoring (#965)

- Replacing empty constructor/destructor implementations with `= default`
- Removing redundant `virtual` keywords from override methods
- Replacing `NULL` and `0` with `nullptr`
- Replacing C headers with C++ equivalents (`<cstdio>`, `<cstring>`, etc.)
- Marking copy constructors/assignment operators as `= delete` for non-copyable classes
- Converting `void` parameter lists to empty parameter lists
- Replacing integer literals with appropriate boolean values
This commit is contained in:
Pasukhin Dmitry
2025-12-29 11:55:04 +00:00
committed by GitHub
parent 14d4e91171
commit c020fc2fad
4823 changed files with 15722 additions and 16541 deletions
@@ -224,7 +224,7 @@ static bool newUV(const gp_Pnt& thePoint,
//=================================================================================================
BRepTools_NurbsConvertModification::BRepTools_NurbsConvertModification() {}
BRepTools_NurbsConvertModification::BRepTools_NurbsConvertModification() = default;
//=================================================================================================