summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2013-10-23 16:41:49 +0200
committerThomas Arnhold <thomas@arnhold.org>2013-10-23 23:22:28 +0200
commit7921e92cf9853cadb592318c04c302816216035f (patch)
treef00c2fd79cfd2d1c1e795b3b96820c991fddf471
parent6ad1aaef0efb182d84a73519cc5c55c7c5ddf17b (diff)
remove external include guard
Change-Id: I78a816b23a0cc118a61a39ca21d6ec234fd39749
-rw-r--r--include/osl/security.hxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/include/osl/security.hxx b/include/osl/security.hxx
index 941b2c5980a8..46e27ecb6196 100644
--- a/include/osl/security.hxx
+++ b/include/osl/security.hxx
@@ -17,14 +17,11 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
-#ifndef _OSL_SECURITY_HXX_
-#define _OSL_SECURITY_HXX_
+#ifndef INCLUDED_OSL_SECURITY_HXX
+#define INCLUDED_OSL_SECURITY_HXX
#include <rtl/ustring.hxx>
-
-#ifndef _OSL_SECURITY_DECL_HXX
-# include <osl/security_decl.hxx>
-#endif
+#include <osl/security_decl.hxx>
namespace osl
{
@@ -98,6 +95,6 @@ inline oslSecurity Security::getHandle() const
}
-#endif // _OSL_SECURITY_HXX_
+#endif // INCLUDED_OSL_SECURITY_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */