Base: fix several warnings reported by code analyzers

This commit is contained in:
wmayer
2022-08-02 13:04:50 +02:00
parent c6de515b20
commit 7824d7b1df
9 changed files with 40 additions and 27 deletions

View File

@@ -446,7 +446,7 @@ ConsoleSingleton & ConsoleSingleton::Instance()
//**************************************************************************
// Python stuff
// ConsoleSingleton Methods // Methods structure
// ConsoleSingleton Methods structure
PyMethodDef ConsoleSingleton::Methods[] = {
{"PrintMessage", ConsoleSingleton::sPyMessage, METH_VARARGS,
"PrintMessage(obj) -> None\n\n"
@@ -479,7 +479,7 @@ PyMethodDef ConsoleSingleton::Methods[] = {
{"GetObservers", ConsoleSingleton::sPyGetObservers, METH_VARARGS,
"GetObservers() -> list of str\n\n"
"Get the names of the current logging interfaces."},
{nullptr, nullptr, 0, nullptr} /* Sentinel */
{nullptr, nullptr, 0, nullptr} /* Sentinel */
};
namespace {