New Index.c C API remark

Hi,

In the new clang-c/Index.h file, shouldn’t the Cursor enums be prefixed by CX (like the DeclKind enums) ?

enum CXCursorKind {
CXCursor_Declaration,
CXCursor_Reference,
CXCursor_ObjC_ClassRef,

instead of

enum CXCursorKind {
Cursor_Declaration,
Cursor_Reference,
Cursor_ObjC_ClassRef,

It would be more consistent and will reduce namespace pollution IMHO.

Regards

Just fixed…

Thanks,

snaroff