summaryrefslogtreecommitdiff
path: root/include/rtl
diff options
context:
space:
mode:
Diffstat (limited to 'include/rtl')
-rw-r--r--include/rtl/strbuf.hxx15
-rw-r--r--include/rtl/ustrbuf.hxx14
2 files changed, 0 insertions, 29 deletions
diff --git a/include/rtl/strbuf.hxx b/include/rtl/strbuf.hxx
index 0fc3284a89f9..90bf41b6fd54 100644
--- a/include/rtl/strbuf.hxx
+++ b/include/rtl/strbuf.hxx
@@ -995,21 +995,6 @@ private:
sal_Int32 nCapacity;
};
-#ifdef LIBO_INTERNAL_ONLY // "RTL_FAST_STRING"
-/**
- @internal
-*/
-template<>
-struct ToStringHelper< OStringBuffer >
- {
- static int length( const OStringBuffer& s ) { return s.getLength(); }
- static char* addData( char* buffer, const OStringBuffer& s ) { return addDataHelper( buffer, s.getStr(), s.getLength()); }
- static const bool allowOStringConcat = true;
- static const bool allowOUStringConcat = false;
- };
-#endif
-
-
}
#ifdef RTL_STRING_UNITTEST
diff --git a/include/rtl/ustrbuf.hxx b/include/rtl/ustrbuf.hxx
index ecae7f03e129..07188a73921e 100644
--- a/include/rtl/ustrbuf.hxx
+++ b/include/rtl/ustrbuf.hxx
@@ -1561,20 +1561,6 @@ private:
sal_Int32 nCapacity;
};
-#ifdef LIBO_INTERNAL_ONLY // "RTL_FAST_STRING"
-/**
- @internal
-*/
-template<>
-struct ToStringHelper< OUStringBuffer >
- {
- static int length( const OUStringBuffer& s ) { return s.getLength(); }
- static sal_Unicode* addData( sal_Unicode* buffer, const OUStringBuffer& s ) { return addDataHelper( buffer, s.getStr(), s.getLength()); }
- static const bool allowOStringConcat = false;
- static const bool allowOUStringConcat = true;
- };
-#endif
-
}
#ifdef RTL_STRING_UNITTEST