diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-07-25 23:13:47 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-07-25 23:13:47 +0200 |
commit | b4e8a847ba4e775fb7d422b2daf18356db50eec8 (patch) | |
tree | b7beddae0b6b9800c8a40dfc6b4be33764b6a4a6 /strbuf.h | |
parent | Merge branch 'ew/autoconf-pthread' (diff) | |
parent | strbuf: avoid calling strbuf_grow() twice in strbuf_addbuf() (diff) | |
download | git-b4e8a847ba4e775fb7d422b2daf18356db50eec8.tar.xz git-b4e8a847ba4e775fb7d422b2daf18356db50eec8.zip |
Merge branch 'rs/use-strbuf-addbuf'
Code cleanup.
* rs/use-strbuf-addbuf:
strbuf: avoid calling strbuf_grow() twice in strbuf_addbuf()
use strbuf_addbuf() for appending a strbuf to another
Diffstat (limited to 'strbuf.h')
-rw-r--r-- | strbuf.h | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -263,11 +263,7 @@ static inline void strbuf_addstr(struct strbuf *sb, const char *s) /** * Copy the contents of another buffer at the end of the current one. */ -static inline void strbuf_addbuf(struct strbuf *sb, const struct strbuf *sb2) -{ - strbuf_grow(sb, sb2->len); - strbuf_add(sb, sb2->buf, sb2->len); -} +extern void strbuf_addbuf(struct strbuf *sb, const struct strbuf *sb2); /** * Copy part of the buffer from a given position till a given length to the |