modernize C++: use bool literals

This commit is contained in:
wmayer
2023-08-05 23:44:44 +02:00
committed by wwmayer
parent 51a34d1fbd
commit 2a88c7c7df
25 changed files with 46 additions and 46 deletions

View File

@@ -614,7 +614,7 @@ PyObject* DocumentPy::getObject(PyObject *args)
PyErr_SetString(PyExc_TypeError, "a string or integer is required");
return nullptr;
}
while (0);
while (false);
if (obj)
return obj->getPyObject();

View File

@@ -2806,7 +2806,7 @@ void VariableExpression::addComponent(Component *c) {
var << ObjectIdentifier::RangeComponent(l1,l2,l3);
return;
}
}while(0);
}while(false);
Expression::addComponent(c);
}