Skip to content

Commit b5eb741

Browse files
peffgitster
authored andcommitted
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 <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 837dc42 commit b5eb741

File tree

1 file changed

+0
-13
lines changed

1 file changed

+0
-13
lines changed

strvec.h

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -86,17 +86,4 @@ void strvec_clear(struct strvec *);
8686
*/
8787
const char **strvec_detach(struct strvec *);
8888

89-
/* compatibility for historic argv_array interface */
90-
#define argv_array strvec
91-
#define ARGV_ARRAY_INIT STRVEC_INIT
92-
#define argv_array_init strvec_init
93-
#define argv_array_push strvec_push
94-
#define argv_array_pushf strvec_pushf
95-
#define argv_array_pushl strvec_pushl
96-
#define argv_array_pushv strvec_pushv
97-
#define argv_array_pop strvec_pop
98-
#define argv_array_split strvec_split
99-
#define argv_array_clear strvec_clear
100-
#define argv_array_detach strvec_detach
101-
10289
#endif /* STRVEC_H */

0 commit comments

Comments
 (0)