diff options
Diffstat (limited to 'include/rtl/ustrbuf.hxx')
-rw-r--r-- | include/rtl/ustrbuf.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/rtl/ustrbuf.hxx b/include/rtl/ustrbuf.hxx index 0240557f65ba..d205c63c6984 100644 --- a/include/rtl/ustrbuf.hxx +++ b/include/rtl/ustrbuf.hxx @@ -92,10 +92,14 @@ public: rtl_uString_new_WithLength( &pData, length ); } #if __cplusplus >= 201103L + // GCC 4.6 lacks delegating ctors +#if defined(__clang__) || !defined(__GNUC__) || (__GNUC__ > 4) || (__GNUC_MINOR__ > 6) explicit OUStringBuffer(unsigned int length) : OUStringBuffer(static_cast<int>(length)) { } +#if SAL_TYPES_SIZEOFLONG == 4 + // additional overloads for sal_Int32 sal_uInt32 explicit OUStringBuffer(long length) : OUStringBuffer(static_cast<int>(length)) { @@ -104,10 +108,12 @@ public: : OUStringBuffer(static_cast<int>(length)) { } +#endif // avoid obvious bugs explicit OUStringBuffer(char) = delete; explicit OUStringBuffer(sal_Unicode) = delete; #endif +#endif /** Constructs a string buffer so that it represents the same |