Kaydet (Commit) c24b4dcf authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wunused-member-function

Change-Id: I5dd8f718cb96c4442e2fce08a8dc4130e934c68d
üst 1110e665
...@@ -219,13 +219,6 @@ struct StringTraits ...@@ -219,13 +219,6 @@ struct StringTraits
rtl_string_new_WithLength(pBuffer, *pCapacity); rtl_string_new_WithLength(pBuffer, *pCapacity);
} }
static inline void appendChar(rtl_String ** pBuffer, sal_Int32 * pCapacity,
sal_Int32 * pOffset, sal_Char cChar)
{
rtl_stringbuffer_insert(pBuffer, pCapacity, *pOffset, &cChar, 1);
++*pOffset;
}
static inline void appendChars(rtl_String ** pBuffer, sal_Int32 * pCapacity, static inline void appendChars(rtl_String ** pBuffer, sal_Int32 * pCapacity,
sal_Int32 * pOffset, sal_Char const * pChars, sal_Int32 * pOffset, sal_Char const * pChars,
sal_Int32 nLen) sal_Int32 nLen)
...@@ -261,13 +254,6 @@ struct UStringTraits ...@@ -261,13 +254,6 @@ struct UStringTraits
rtl_uString_new_WithLength(pBuffer, *pCapacity); rtl_uString_new_WithLength(pBuffer, *pCapacity);
} }
static inline void appendChar(rtl_uString ** pBuffer, sal_Int32 * pCapacity,
sal_Int32 * pOffset, sal_Unicode cChar)
{
rtl_uStringbuffer_insert(pBuffer, pCapacity, *pOffset, &cChar, 1);
++*pOffset;
}
static inline void appendChars(rtl_uString ** pBuffer, static inline void appendChars(rtl_uString ** pBuffer,
sal_Int32 * pCapacity, sal_Int32 * pOffset, sal_Int32 * pCapacity, sal_Int32 * pOffset,
sal_Unicode const * pChars, sal_Int32 nLen) sal_Unicode const * pChars, sal_Int32 nLen)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment