diff options
author | Muthu Subramanian <sumuthu@collabora.com> | 2013-12-10 17:58:55 +0530 |
---|---|---|
committer | Muthu Subramanian <sumuthu@collabora.com> | 2013-12-10 17:59:57 +0530 |
commit | 22cb5a88a047c4c0a4ab0e0236e70eee417e1711 (patch) | |
tree | 3cdbd24661fd450c0930adfdd1456fe0ef80733d /include/rtl/strbuf.hxx | |
parent | a44dbc35292b70dbcb2bbf3e51b60e2fcdbfc1c9 (diff) |
Fix build issue - add append(bool) to strbuf
Diffstat (limited to 'include/rtl/strbuf.hxx')
-rw-r--r-- | include/rtl/strbuf.hxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/rtl/strbuf.hxx b/include/rtl/strbuf.hxx index e21efbb5b5dc..ce3ad0f2f7ca 100644 --- a/include/rtl/strbuf.hxx +++ b/include/rtl/strbuf.hxx @@ -532,6 +532,11 @@ public: return append( sz, rtl_str_valueOfBoolean( sz, b ) ); } + OStringBuffer & append(bool b) + { + return append((sal_Bool)b); + } + /** Appends the string representation of the <code>char</code> argument to this string buffer. |