mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
12 lines
210 B
C
12 lines
210 B
C
#include <RDGeneral/export.h>
|
|
#ifndef RDKIT_ITERATOR_NEXT_INCLUDED
|
|
#define RDKIT_ITERATOR_NEXT_INCLUDED
|
|
|
|
#if PY_MAJOR_VERSION >= 3
|
|
#define NEXT_METHOD "__next__"
|
|
#else
|
|
#define NEXT_METHOD "next"
|
|
#endif
|
|
|
|
#endif
|