Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2020-07-28 23:27:09 +0300
committerJunio C Hamano <gitster@pobox.com>2020-07-29 01:02:18 +0300
commitb5eb741a00155f888a9a4ced87c840a2b7b04f5a (patch)
tree5197a1fe41ef0b048291cc82a0ecbb1c8d38749a /strvec.h
parent837dc425cf1216a97aaeb5137b743dac766fd79d (diff)
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>
Diffstat (limited to 'strvec.h')
-rw-r--r--strvec.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/strvec.h b/strvec.h
index 4be39c8a48..bd35de1ce4 100644
--- a/strvec.h
+++ b/strvec.h
@@ -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 */