summaryrefslogtreecommitdiff
path: root/strbuf.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-08-08 21:21:42 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-08-08 21:21:42 (GMT)
commit48aa37ed4266e75340abd3232860d6d14a30c774 (patch)
tree3e60b02a98d98b64b604da514f345561fed293c6 /strbuf.h
parentee7fd70edfc51ec88865c573ff950b4dfbef1833 (diff)
parent31471ba21ee29886ab856981e52f723c913d7f40 (diff)
downloadgit-48aa37ed4266e75340abd3232860d6d14a30c774.zip
git-48aa37ed4266e75340abd3232860d6d14a30c774.tar.gz
git-48aa37ed4266e75340abd3232860d6d14a30c774.tar.bz2
Merge branch 'rs/use-strbuf-addbuf' into maint
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.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/strbuf.h b/strbuf.h
index 83c5c98..ba8d5f1 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