strvec: drop argv_array compatibility layer

There are no callers which need it anymore. Any topics in flight will
need to be updated as they get merged in (but the compiler will make
that quite clear).

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Jeff King 2020-07-28 16:27:09 -04:00 коммит произвёл Junio C Hamano
Родитель 837dc425cf
Коммит b5eb741a00
1 изменённых файлов: 0 добавлений и 13 удалений

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

@ -86,17 +86,4 @@ void strvec_clear(struct strvec *);
*/
const char **strvec_detach(struct strvec *);
/* compatibility for historic argv_array interface */
#define argv_array strvec
#define ARGV_ARRAY_INIT STRVEC_INIT
#define argv_array_init strvec_init
#define argv_array_push strvec_push
#define argv_array_pushf strvec_pushf
#define argv_array_pushl strvec_pushl
#define argv_array_pushv strvec_pushv
#define argv_array_pop strvec_pop
#define argv_array_split strvec_split
#define argv_array_clear strvec_clear
#define argv_array_detach strvec_detach
#endif /* STRVEC_H */