Cleanup: Clang tidy

Addressed almost all warnings except for replacing defines
with enums and variable assignment in if statements.
This commit is contained in:
Hans Goudey
2022-12-29 12:01:32 -05:00
parent 31f2242691
commit 2652029f3b
77 changed files with 542 additions and 547 deletions

View File

@@ -284,10 +284,10 @@ static PyModuleDef module_definition = {
/*m_doc*/ module_docstring,
/*m_size*/ -1,
/*m_methods*/ module_functions,
/*m_slots*/ NULL,
/*m_traverse*/ NULL,
/*m_clear*/ NULL,
/*m_free*/ NULL,
/*m_slots*/ nullptr,
/*m_traverse*/ nullptr,
/*m_clear*/ nullptr,
/*m_free*/ nullptr,
};
//------------------- MODULE INITIALIZATION --------------------------------