Skip to content

Commit

Permalink
Clang format fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pepone committed Jul 23, 2024
1 parent e4aff18 commit 82aabd9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python/modules/IcePy/Current.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ namespace IcePy
/* The ob_type field must be initialized in the module init function
* to be portable to Windows without using C++. */
PyVarObject_HEAD_INIT(0, 0) "IcePy.Current", /* tp_name */
sizeof(CurrentObject), /* tp_basicsize */
0, /* tp_itemsize */
sizeof(CurrentObject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
reinterpret_cast<destructor>(currentDealloc), /* tp_dealloc */
0, /* tp_print */
Expand Down
4 changes: 2 additions & 2 deletions python/modules/IcePy/Proxy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2186,8 +2186,8 @@ namespace IcePy
/* The ob_type field must be initialized in the module init function
* to be portable to Windows without using C++. */
PyVarObject_HEAD_INIT(0, 0) "IcePy.ObjectPrx", /* tp_name */
sizeof(ProxyObject), /* tp_basicsize */
0, /* tp_itemsize */
sizeof(ProxyObject), /* tp_basicsize */
0, /* tp_itemsize */
/* methods */
reinterpret_cast<destructor>(proxyDealloc), /* tp_dealloc */
0, /* tp_print */
Expand Down

0 comments on commit 82aabd9

Please sign in to comment.