Commit 50f5aa5a authored by gsamain's avatar gsamain

Space fixes on CyObject utility code

parent 2564898d
......@@ -1538,7 +1538,8 @@ static void __Pyx_FastGilFuncInit(void) {
#define CyObject_ATOMIC_REFCOUNT_TYPE atomic_int
class CyObject {
private: CyObject_ATOMIC_REFCOUNT_TYPE ob_refcnt;
private:
CyObject_ATOMIC_REFCOUNT_TYPE ob_refcnt;
public:
CyObject(): ob_refcnt(1) {}
virtual ~CyObject() {}
......
......@@ -1606,6 +1606,7 @@ int CyObject::CyObject_DECREF()
return 0;
}
/////////////// UnpackUnboundCMethod.proto ///////////////
typedef struct {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment