Skip to content

Commit d6a2870

Browse files
committed
bindings: Remove exess semicolons from py_types.h
1 parent 12a361a commit d6a2870

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bindings/python/py_types.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@
2222

2323
extern PyTypeObject type_py_vector;
2424
typedef struct {
25-
PyObject_HEAD;
25+
PyObject_HEAD
2626
struct cr_vector val;
2727
} py_vector;
2828

2929
extern PyTypeObject type_py_coord;
3030
typedef struct {
31-
PyObject_HEAD;
31+
PyObject_HEAD
3232
struct cr_coord val;
3333
} py_coord;
3434

3535
extern PyTypeObject type_py_bitmap;
3636
typedef struct {
37-
PyObject_HEAD;
37+
PyObject_HEAD
3838
struct cr_bitmap *ref;
3939
} py_bitmap;
4040
PyObject *py_bitmap_wrap(struct cr_bitmap *ref);

0 commit comments

Comments
 (0)