Merge branch 'ab/fewer-the-index-macros'

Squelch warnings from Coccinelle

* ab/fewer-the-index-macros:
  cocci: avoid "should ... be a metavariable" warnings
This commit is contained in:
Junio C Hamano 2022-12-01 18:38:07 +09:00
Родитель 215ae4f264 cddd68ae33
Коммит 805265fcf7
1 изменённых файлов: 8 добавлений и 4 удалений

Просмотреть файл

@ -1,22 +1,26 @@
// the_index.* variables
@@
identifier AC = active_cache;
identifier ACC = active_cache_changed;
identifier ACT = active_cache_tree;
@@
(
- active_cache
- AC
+ the_index.cache
|
- active_cache_changed
- ACC
+ the_index.cache_changed
|
- active_cache_tree
- ACT
+ the_index.cache_tree
)
@@
identifier AN = active_nr;
identifier f != prepare_to_commit;
@@
f(...) {<...
- active_nr
- AN
+ the_index.cache_nr
...>}