diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-07-14 05:37:24 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-07-14 05:44:15 +0200 |
commit | 1340890ccdff010c827a8e98eb2eaf1a2ec49a2d (patch) | |
tree | 92cf2ad652a6a8366317b02129e510d0dc874c82 /cli_ure/source | |
parent | 5a7e8389f0720f1872f36af401c6b3af7968b7ea (diff) |
simplify include guards
Change-Id: Id4210229b20a1d54b680ff1a2ccbcdd3684ecf5f
Diffstat (limited to 'cli_ure/source')
-rw-r--r-- | cli_ure/source/uno_bridge/cli_base.h | 2 | ||||
-rw-r--r-- | cli_ure/source/uno_bridge/cli_bridge.h | 2 | ||||
-rw-r--r-- | cli_ure/source/uno_bridge/cli_environment.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/cli_ure/source/uno_bridge/cli_base.h b/cli_ure/source/uno_bridge/cli_base.h index f734f2ea286a..e678f8e52855 100644 --- a/cli_ure/source/uno_bridge/cli_base.h +++ b/cli_ure/source/uno_bridge/cli_base.h @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#if ! defined INCLUDED_CLI_BASE_H +#ifndef INCLUDED_CLI_BASE_H #define INCLUDED_CLI_BASE_H #pragma unmanaged diff --git a/cli_ure/source/uno_bridge/cli_bridge.h b/cli_ure/source/uno_bridge/cli_bridge.h index e8f78c875d07..7c451695d10b 100644 --- a/cli_ure/source/uno_bridge/cli_bridge.h +++ b/cli_ure/source/uno_bridge/cli_bridge.h @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#if ! defined INCLUDED_CLI_BRIDGE_H +#ifndef INCLUDED_CLI_BRIDGE_H #define INCLUDED_CLI_BRIDGE_H #include <vcclr.h> #include "osl/interlck.h" diff --git a/cli_ure/source/uno_bridge/cli_environment.h b/cli_ure/source/uno_bridge/cli_environment.h index e6601f539b80..683ad84a6081 100644 --- a/cli_ure/source/uno_bridge/cli_environment.h +++ b/cli_ure/source/uno_bridge/cli_environment.h @@ -17,7 +17,7 @@ * the License at http://www.apache.org/licenses/LICENSE-2.0 . */ -#if ! defined INCLUDED_CLI_ENVIRONMENT_H +#ifndef INCLUDED_CLI_ENVIRONMENT_H #define INCLUDED_CLI_ENVIRONMENT_H #include "cli_base.h" |