[TD]CI clang warnings

This commit is contained in:
wandererfan
2022-08-23 15:32:13 -04:00
committed by WandererFan
parent c075a298ae
commit aa2b1b8392
246 changed files with 3944 additions and 4241 deletions

View File

@@ -74,7 +74,7 @@ PyObject* DrawParametricTemplatePy::drawLine(PyObject *args)
if (!PyArg_ParseTuple(args, "dddd", &x1, &y1, &x2, &y2))
return nullptr;
getDrawParametricTemplatePtr()->drawLine(x1,y1,x2,y2);
getDrawParametricTemplatePtr()->drawLine(x1, y1, x2, y2);
Py_Return;