summaryrefslogtreecommitdiff
path: root/xmlreader
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-04-04 13:34:58 +0200
committerLuboš Luňák <l.lunak@suse.cz>2013-04-04 13:44:30 +0200
commit598d3228cdcd66a79740bd05740f3e2169b1ec98 (patch)
tree814696626fba31cd58f8cf9cbccbed5dc8a1d160 /xmlreader
parentd9e0c08b52dca00508485cc7a8082200a2693ec9 (diff)
remove HAVE_SFINAE_ANONYMOUS_BROKEN
Since we no longer support the old Apple SDK using gcc-4.0.1, we can remove the cruft to work around its problems. Woohoo. Change-Id: Idf275e76449443f1f0314e75dab993f213a77eb7
Diffstat (limited to 'xmlreader')
-rw-r--r--xmlreader/inc/xmlreader/span.hxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/xmlreader/inc/xmlreader/span.hxx b/xmlreader/inc/xmlreader/span.hxx
index fbb4834d0c0d..b8c28db0f42b 100644
--- a/xmlreader/inc/xmlreader/span.hxx
+++ b/xmlreader/inc/xmlreader/span.hxx
@@ -59,7 +59,6 @@ struct OOO_DLLPUBLIC_XMLREADER Span {
begin, length, text.getStr(), text.getLength()) == 0;
}
-#if ! HAVE_SFINAE_ANONYMOUS_BROKEN
/**
@overload
This function accepts an ASCII string literal as its argument.
@@ -70,7 +69,6 @@ struct OOO_DLLPUBLIC_XMLREADER Span {
assert( strlen( literal ) == rtl::internal::ConstCharArrayDetector< T >::size - 1 );
return rtl_str_compare_WithLength( begin, length, literal, rtl::internal::ConstCharArrayDetector< T, void >::size - 1 ) == 0;
}
-#endif
rtl::OUString convertFromUtf8() const;
};