Skip to content

Commit 3443bc0

Browse files
Remove parens instead
1 parent f5dac12 commit 3443bc0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Include/modsupport.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,15 +132,15 @@ PyAPI_FUNC(int) PyABIInfo_Check(PyABIInfo *info, const char *module_name);
132132
) \
133133
/////////////////////////////////////////////////////////
134134

135-
#define _PyABIInfo_DEFAULT() { \
135+
#define _PyABIInfo_DEFAULT { \
136136
1, 0, \
137137
PyABIInfo_DEFAULT_FLAGS, \
138138
PY_VERSION_HEX, \
139139
PyABIInfo_DEFAULT_ABI_VERSION } \
140140
/////////////////////////////////////////////////////////
141141

142142
#define PyABIInfo_VAR(NAME) \
143-
static PyABIInfo NAME = _PyABIInfo_DEFAULT();
143+
static PyABIInfo NAME = _PyABIInfo_DEFAULT;
144144

145145
#undef _PyABIInfo_DEFAULT_STABLE
146146
#undef _PyABIInfo_DEFAULT_FT

0 commit comments

Comments
 (0)