X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=strbuf.h;h=14c8c10d66b9aaa2d8f0c109cf0dd668701cb2eb;hb=f5833f0110119fc17973835cc0042e76e3375ccd;hp=0a74acb2369ac26cb56b05a953171330c3abe652;hpb=b005d550f87fdb56406120a35fa218d869cdde3a;p=platform%2Fupstream%2Fgit.git diff --git a/strbuf.h b/strbuf.h index 0a74acb..14c8c10 100644 --- a/strbuf.h +++ b/strbuf.h @@ -480,15 +480,6 @@ extern int strbuf_normalize_path(struct strbuf *sb); */ extern void strbuf_stripspace(struct strbuf *buf, int skip_comments); -/** - * Temporary alias until all topic branches have switched to use - * strbuf_stripspace directly. - */ -static inline void stripspace(struct strbuf *buf, int skip_comments) -{ - strbuf_stripspace(buf, skip_comments); -} - static inline int strbuf_strip_suffix(struct strbuf *sb, const char *suffix) { if (strip_suffix_mem(sb->buf, &sb->len, suffix)) {