projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6f9e3f3
)
Bump CINDEX_VERSION_MINOR due to additional APIs
author
Aaron Ballman
<aaron@aaronballman.com>
Thu, 2 Feb 2023 13:25:21 +0000
(08:25 -0500)
committer
Aaron Ballman
<aaron@aaronballman.com>
Thu, 2 Feb 2023 13:49:12 +0000
(08:49 -0500)
0a51bc731bcc2c27e4fe97957a83642d93d989be
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.
clang/include/clang-c/Index.h
patch
|
blob
|
history
diff --git
a/clang/include/clang-c/Index.h
b/clang/include/clang-c/Index.h
index
4e6de21
..
a17a977
100644
(file)
--- a/
clang/include/clang-c/Index.h
+++ b/
clang/include/clang-c/Index.h
@@
-34,7
+34,7
@@
* compatible, thus CINDEX_VERSION_MAJOR is expected to remain stable.
*/
#define CINDEX_VERSION_MAJOR 0
-#define CINDEX_VERSION_MINOR 6
2
+#define CINDEX_VERSION_MINOR 6
3
#define CINDEX_VERSION_ENCODE(major, minor) (((major)*10000) + ((minor)*1))