diff options
author | Sebastien Gonzalve <sebastien.gonzalve@intel.com> | 2015-04-08 11:45:58 +0200 |
---|---|---|
committer | Eric Laurent <elaurent@google.com> | 2015-04-24 13:39:13 -0700 |
commit | 62054178e7284220a754e91fabeea6a309c17afa (patch) | |
tree | 4bd0f94eae35d3735c63a6e6267d3327c570d66e | |
parent | 702bf6b441aa7758022f72fcfbc6de7660dddd40 (diff) | |
download | external_parameter-framework-62054178e7284220a754e91fabeea6a309c17afa.zip external_parameter-framework-62054178e7284220a754e91fabeea6a309c17afa.tar.gz external_parameter-framework-62054178e7284220a754e91fabeea6a309c17afa.tar.bz2 |
Utility.h multiple inclusions directive harmonized
Replace #ifdef and #define wth #pragma once
Change-Id: I60fe1e74a7481be38d9b8e44952e533d7ae80857
Signed-off-by: Sebastien Gonzalve <sebastien.gonzalve@intel.com>
-rw-r--r-- | utility/Utility.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/utility/Utility.h b/utility/Utility.h index 4a98105..51f796f 100644 --- a/utility/Utility.h +++ b/utility/Utility.h @@ -28,8 +28,7 @@ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef UTILITY_H -#define UTILITY_H +#pragma once #include <string> #include <list> @@ -65,4 +64,3 @@ public: const std::string& strKeyValueSeparator = ":"); }; -#endif // UTILITY_H |