summaryrefslogtreecommitdiff
path: root/sal/rtl/uri.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-07-01 23:21:17 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-07-01 23:21:17 +0200
commit4f90623dba6a211e7b4c9e98def91605627c5072 (patch)
treedfd149b4a968abe9a9c30fb59910387d0e8a30f3 /sal/rtl/uri.cxx
parenta402fd0d520108ec62b170415b6bc7b04716e3b4 (diff)
Clean up surrogates.hxx
Change-Id: I0eae089be1bde9db822a77bea482c10650c8a137
Diffstat (limited to 'sal/rtl/uri.cxx')
-rw-r--r--sal/rtl/uri.cxx15
1 files changed, 0 insertions, 15 deletions
diff --git a/sal/rtl/uri.cxx b/sal/rtl/uri.cxx
index 20daac36024c..e51039888ba9 100644
--- a/sal/rtl/uri.cxx
+++ b/sal/rtl/uri.cxx
@@ -41,21 +41,6 @@ std::size_t const nCharClassSize = 128;
sal_Unicode const cEscapePrefix = 0x25; // '%'
-inline bool isHighSurrogate(sal_uInt32 nUtf16)
-{
- return SAL_RTL_IS_HIGH_SURROGATE(nUtf16);
-}
-
-inline bool isLowSurrogate(sal_uInt32 nUtf16)
-{
- return SAL_RTL_IS_LOW_SURROGATE(nUtf16);
-}
-
-inline sal_uInt32 combineSurrogates(sal_uInt32 high, sal_uInt32 low)
-{
- return SAL_RTL_COMBINE_SURROGATES(high, low);
-}
-
inline int getHexWeight(sal_uInt32 nUtf32)
{
return nUtf32 >= 0x30 && nUtf32 <= 0x39 ? // '0'--'9'