mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-09-05 04:07:58 +08:00
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:
@@ -16,7 +16,7 @@
|
||||
|
||||
#include <AdvApp2Var_MathBase.hxx>
|
||||
|
||||
static integer init_STMAT(void)
|
||||
static integer init_STMAT()
|
||||
{
|
||||
// Init PRCSN
|
||||
doublereal EPSIL1 = 1.e-9, EPSIL2 = 1.e-8, EPSIL3 = 1.e-9, EPSIL4 = 1.e-4;
|
||||
|
||||
Reference in New Issue
Block a user