diff options
author | David Tardon <dtardon@redhat.com> | 2012-03-07 12:10:41 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2012-03-07 14:01:25 +0100 |
commit | 1f370333c50db8e120fd62d411f2c66956783f0f (patch) | |
tree | d715a3c7f465b388c0523d7f086acd1994aa387f /sal | |
parent | 8fc3fc5642bf5d1f7028b620d4ad66f275c2b0ba (diff) |
remove useless include guards
Diffstat (limited to 'sal')
-rw-r--r-- | sal/qa/OStringBuffer/rtl_String_Utils.cxx | 18 |
1 files changed, 4 insertions, 14 deletions
diff --git a/sal/qa/OStringBuffer/rtl_String_Utils.cxx b/sal/qa/OStringBuffer/rtl_String_Utils.cxx index 0f05b452a231..61f132d32c02 100644 --- a/sal/qa/OStringBuffer/rtl_String_Utils.cxx +++ b/sal/qa/OStringBuffer/rtl_String_Utils.cxx @@ -30,21 +30,11 @@ #include <math.h> #include <stdlib.h> -#ifndef _SAL_TYPES_H_ - #include <sal/types.h> -#endif - -#ifndef _RTL_USTRING_H_ - #include <rtl/ustring.h> -#endif +#include <sal/types.h> -#ifndef _RTL_STRING_HXX_ - #include <rtl/string.hxx> -#endif - -#ifndef _RTL_STRING_UTILS_CONST_H_ - #include <rtl_String_Utils_Const.h> -#endif +#include <rtl/ustring.h> +#include <rtl/string.hxx> +#include <rtl_String_Utils_Const.h> using ::rtl::OString; sal_uInt32 AStringLen( const sal_Char *pAStr ) |