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) { ...@@ -1538,7 +1538,8 @@ static void __Pyx_FastGilFuncInit(void) {
#define CyObject_ATOMIC_REFCOUNT_TYPE atomic_int #define CyObject_ATOMIC_REFCOUNT_TYPE atomic_int
class CyObject { class CyObject {
private: CyObject_ATOMIC_REFCOUNT_TYPE ob_refcnt; private:
CyObject_ATOMIC_REFCOUNT_TYPE ob_refcnt;
public: public:
CyObject(): ob_refcnt(1) {} CyObject(): ob_refcnt(1) {}
virtual ~CyObject() {} virtual ~CyObject() {}
......
...@@ -1606,6 +1606,7 @@ int CyObject::CyObject_DECREF() ...@@ -1606,6 +1606,7 @@ int CyObject::CyObject_DECREF()
return 0; return 0;
} }
/////////////// UnpackUnboundCMethod.proto /////////////// /////////////// UnpackUnboundCMethod.proto ///////////////
typedef struct { 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