Skip to content

Commit f879f0d

Browse files
committed
Include: change guard of cpython/classobject.h
This aligns it more with other headers in `cpython/` and frees up the guard for `Include/classobject.h`.
1 parent 3444ef9 commit f879f0d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Include/cpython/classobject.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
/* Revealing some structures (not for general use) */
44

55
#ifndef Py_LIMITED_API
6-
#ifndef Py_CLASSOBJECT_H
7-
#define Py_CLASSOBJECT_H
6+
#ifndef Py_CPYTHON_CLASSOBJECT_H
7+
#define Py_CPYTHON_CLASSOBJECT_H
88
#ifdef __cplusplus
99
extern "C" {
1010
#endif
@@ -67,5 +67,5 @@ static inline PyObject* PyInstanceMethod_GET_FUNCTION(PyObject *meth) {
6767
#ifdef __cplusplus
6868
}
6969
#endif
70-
#endif // !Py_CLASSOBJECT_H
70+
#endif // !Py_CPYTHON_CLASSOBJECT_H
7171
#endif // !Py_LIMITED_API

0 commit comments

Comments
 (0)