Skip to content

Commit

Permalink
Bump CINDEX_VERSION_MINOR due to additional APIs
Browse files Browse the repository at this point in the history
0a51bc7 added a new API to libclang
but forgot to bump the minor version number.

There is no reasonable way to test this change, hence the lack of test
coverage.

(cherry picked from commit 79571aa)
  • Loading branch information
AaronBallman authored and tru committed Feb 2, 2023
1 parent d8bf7d2 commit c2f68bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clang/include/clang-c/Index.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* compatible, thus CINDEX_VERSION_MAJOR is expected to remain stable.
*/
#define CINDEX_VERSION_MAJOR 0
#define CINDEX_VERSION_MINOR 62
#define CINDEX_VERSION_MINOR 63

#define CINDEX_VERSION_ENCODE(major, minor) (((major)*10000) + ((minor)*1))

Expand Down

0 comments on commit c2f68bc

Please sign in to comment.