From 83650b30ad5ef6a4de0bb988bd653298db5eba9a Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Wed, 6 Aug 2014 01:42:46 +0200 Subject: Properly rename header guards according to C++ standard --- include/plist/Array.h | 6 +++--- include/plist/Boolean.h | 6 +++--- include/plist/Data.h | 6 +++--- include/plist/Date.h | 6 +++--- include/plist/Dictionary.h | 6 +++--- include/plist/Integer.h | 6 +++--- include/plist/Key.h | 6 +++--- include/plist/Node.h | 6 +++--- include/plist/Real.h | 6 +++--- include/plist/String.h | 6 +++--- include/plist/Structure.h | 6 +++--- include/plist/Uid.h | 6 +++--- 12 files changed, 36 insertions(+), 36 deletions(-) diff --git a/include/plist/Array.h b/include/plist/Array.h index fd4dea8..5c65588 100644 --- a/include/plist/Array.h +++ b/include/plist/Array.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PLIST__ARRAY_H -#define PLIST__ARRAY_H +#ifndef PLIST_ARRAY_H +#define PLIST_ARRAY_H #include #include @@ -52,4 +52,4 @@ private : }; -#endif // PLIST__ARRAY_H +#endif // PLIST_ARRAY_H diff --git a/include/plist/Boolean.h b/include/plist/Boolean.h index 731eb9e..48489da 100644 --- a/include/plist/Boolean.h +++ b/include/plist/Boolean.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PLIST__BOOLEAN_H -#define PLIST__BOOLEAN_H +#ifndef PLIST_BOOLEAN_H +#define PLIST_BOOLEAN_H #include @@ -45,4 +45,4 @@ public : }; -#endif // PLIST__BOOLEAN_H +#endif // PLIST_BOOLEAN_H diff --git a/include/plist/Data.h b/include/plist/Data.h index f8ae715..3eb6031 100644 --- a/include/plist/Data.h +++ b/include/plist/Data.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PLIST__DATA_H -#define PLIST__DATA_H +#ifndef PLIST_DATA_H +#define PLIST_DATA_H #include #include @@ -46,4 +46,4 @@ public : }; -#endif // PLIST__DATA_H +#endif // PLIST_DATA_H diff --git a/include/plist/Date.h b/include/plist/Date.h index ea0b270..e505b53 100644 --- a/include/plist/Date.h +++ b/include/plist/Date.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PLIST__DATE_H -#define PLIST__DATE_H +#ifndef PLIST_DATE_H +#define PLIST_DATE_H #include #include @@ -47,4 +47,4 @@ public : }; -#endif // PLIST__DATE_H +#endif // PLIST_DATE_H diff --git a/include/plist/Dictionary.h b/include/plist/Dictionary.h index 9958f44..c270de3 100644 --- a/include/plist/Dictionary.h +++ b/include/plist/Dictionary.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PLIST__DICTIONARY_H -#define PLIST__DICTIONARY_H +#ifndef PLIST_DICTIONARY_H +#define PLIST_DICTIONARY_H #include #include @@ -60,4 +60,4 @@ private : }; -#endif // PLIST__DICTIONARY_H +#endif // PLIST_DICTIONARY_H diff --git a/include/plist/Integer.h b/include/plist/Integer.h index 7cdf0df..86af0dd 100644 --- a/include/plist/Integer.h +++ b/include/plist/Integer.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PLIST__INTEGER_H -#define PLIST__INTEGER_H +#ifndef PLIST_INTEGER_H +#define PLIST_INTEGER_H #include @@ -45,4 +45,4 @@ public : }; -#endif // PLIST__INTEGER_H +#endif // PLIST_INTEGER_H diff --git a/include/plist/Key.h b/include/plist/Key.h index cfb4d29..3de09cf 100644 --- a/include/plist/Key.h +++ b/include/plist/Key.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PLIST__KEY_H -#define PLIST__KEY_H +#ifndef PLIST_KEY_H +#define PLIST_KEY_H #include #include @@ -46,4 +46,4 @@ public : }; -#endif // PLIST__KEY_H +#endif // PLIST_KEY_H diff --git a/include/plist/Node.h b/include/plist/Node.h index 1da9ee1..fdd26ee 100644 --- a/include/plist/Node.h +++ b/include/plist/Node.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PLIST__NODE_H -#define PLIST__NODE_H +#ifndef PLIST_NODE_H +#define PLIST_NODE_H #include @@ -53,4 +53,4 @@ private: }; -#endif // PLIST__NODE_H +#endif // PLIST_NODE_H diff --git a/include/plist/Real.h b/include/plist/Real.h index 7d6f8e2..a89eb4a 100644 --- a/include/plist/Real.h +++ b/include/plist/Real.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PLIST__REAL_H -#define PLIST__REAL_H +#ifndef PLIST_REAL_H +#define PLIST_REAL_H #include @@ -45,4 +45,4 @@ public : }; -#endif // PLIST__REAL_H +#endif // PLIST_REAL_H diff --git a/include/plist/String.h b/include/plist/String.h index bd8680d..a1906aa 100644 --- a/include/plist/String.h +++ b/include/plist/String.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PLIST__STRING_H -#define PLIST__STRING_H +#ifndef PLIST_STRING_H +#define PLIST_STRING_H #include #include @@ -46,4 +46,4 @@ public : }; -#endif // PLIST__STRING_H +#endif // PLIST_STRING_H diff --git a/include/plist/Structure.h b/include/plist/Structure.h index ace8b5c..8e609da 100644 --- a/include/plist/Structure.h +++ b/include/plist/Structure.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PLIST__STRUCTURE_H -#define PLIST__STRUCTURE_H +#ifndef PLIST_STRUCTURE_H +#define PLIST_STRUCTURE_H #include #include @@ -56,4 +56,4 @@ private: }; -#endif // PLIST__STRUCTURE_H +#endif // PLIST_STRUCTURE_H diff --git a/include/plist/Uid.h b/include/plist/Uid.h index 62a49e7..e11b022 100644 --- a/include/plist/Uid.h +++ b/include/plist/Uid.h @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifndef PLIST__UID_H -#define PLIST__UID_H +#ifndef PLIST_UID_H +#define PLIST_UID_H #include @@ -45,4 +45,4 @@ public : }; -#endif // PLIST__UID_H +#endif // PLIST_UID_H -- cgit v1.1-32-gdbae