From 52f8321c412cad280c9029f10f9aef03f4f20544 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Tue, 19 Mar 2013 16:44:12 +0100 Subject: use #if instead of #ifdef for testing config_xxx.hxx macros http://lists.freedesktop.org/archives/libreoffice/2013-March/047769.html Change-Id: I81ed4500878ff3193e028410a1f0205e28d17fc3 --- sal/inc/rtl/strbuf.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sal/inc/rtl/strbuf.hxx') diff --git a/sal/inc/rtl/strbuf.hxx b/sal/inc/rtl/strbuf.hxx index b5d746eaa2d7..4dabc7653e7b 100644 --- a/sal/inc/rtl/strbuf.hxx +++ b/sal/inc/rtl/strbuf.hxx @@ -154,7 +154,7 @@ public: @overload @since LibreOffice 3.6 */ -#ifdef HAVE_SFINAE_ANONYMOUS_BROKEN // see the OString ctors +#if HAVE_SFINAE_ANONYMOUS_BROKEN // see the OString ctors OStringBuffer( const char* value ) : pData(NULL) { @@ -454,7 +454,7 @@ public: @param str the characters to be appended. @return this string buffer. */ -#ifdef HAVE_SFINAE_ANONYMOUS_BROKEN +#if HAVE_SFINAE_ANONYMOUS_BROKEN OStringBuffer & append( const sal_Char * str ) { return append( str, rtl_str_getLength( str ) ); @@ -665,7 +665,7 @@ public: @param str a character array. @return this string buffer. */ -#ifdef HAVE_SFINAE_ANONYMOUS_BROKEN +#if HAVE_SFINAE_ANONYMOUS_BROKEN OStringBuffer & insert( sal_Int32 offset, const sal_Char * str ) { return insert( offset, str, rtl_str_getLength( str ) ); -- cgit