[Bf-blender-cvs] [71b5799852c] master: Code-style: Remove double semicolons at end of statement.

Jeroen Bakker noreply at git.blender.org
Thu Jan 19 09:47:56 CET 2023


Commit: 71b5799852c0f57ce4c52052d469fc6c7b58ddcf
Author: Jeroen Bakker
Date:   Thu Jan 19 09:46:45 2023 +0100
Branches: master
https://developer.blender.org/rB71b5799852c0f57ce4c52052d469fc6c7b58ddcf

Code-style: Remove double semicolons at end of statement.

===================================================================

M	source/blender/python/gpu/gpu_py_shader.c

===================================================================

diff --git a/source/blender/python/gpu/gpu_py_shader.c b/source/blender/python/gpu/gpu_py_shader.c
index 87f09098d46..9352e7cc9b1 100644
--- a/source/blender/python/gpu/gpu_py_shader.c
+++ b/source/blender/python/gpu/gpu_py_shader.c
@@ -625,7 +625,7 @@ static PyObject *pygpu_shader_attrs_info_get(BPyGPUShader *self, PyObject *UNUSE
 {
   uint attr_len = GPU_shader_get_attribute_len(self->shader);
   int location_test = 0, attrs_added = 0;
-  ;
+
   PyObject *ret = PyTuple_New(attr_len);
   while (attrs_added < attr_len) {
     char name[256];



More information about the Bf-blender-cvs mailing list