summaryrefslogtreecommitdiff
path: root/strbuf.h
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2016-07-21 16:46:44 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-07-22 16:22:26 (GMT)
commit31471ba21ee29886ab856981e52f723c913d7f40 (patch)
tree3d816df586a76c6112c81fe276c956248e9852c5 /strbuf.h
parent8109984d619467ad26c6a76d59b0a5de8a86e6d6 (diff)
downloadgit-31471ba21ee29886ab856981e52f723c913d7f40.zip
git-31471ba21ee29886ab856981e52f723c913d7f40.tar.gz
git-31471ba21ee29886ab856981e52f723c913d7f40.tar.bz2
strbuf: avoid calling strbuf_grow() twice in strbuf_addbuf()
Implement strbuf_addbuf() as a normal function in order to avoid calling strbuf_grow() twice, with the second callinside strbud_add() being a no-op. This is slightly faster and also reduces the text size a bit. Signed-off-by: Rene Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'strbuf.h')
-rw-r--r--strbuf.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/strbuf.h b/strbuf.h
index 5397d91..45d25d7 100644
--- a/strbuf.h
+++ b/strbuf.h
@@ -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