From 57bbe558e421153145f7e13058411e65f0d6a66f Mon Sep 17 00:00:00 2001 From: roker Date: Fri, 7 May 2021 17:37:55 +0200 Subject: [PATCH] change include guard to fulfill our coding style standard. :-) --- src/wrapper.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/wrapper.hh b/src/wrapper.hh index 5068797..327ea56 100644 --- a/src/wrapper.hh +++ b/src/wrapper.hh @@ -1,8 +1,8 @@ // This file is under GNU General Public License 3.0 // see LICENSE.txt -#ifndef PEP_DATATYPES_WRAPPER_HH -#define PEP_DATATYPES_WRAPPER_HH +#ifndef LIBPEPDATATYPES_WRAPPER_HH +#define LIBPEPDATATYPES_WRAPPER_HH namespace pEp { @@ -82,4 +82,4 @@ private: } // end of namespace pEp -#endif // PEP_DATATYPES_WRAPPER_HH +#endif // LIBPEPDATATYPES_WRAPPER_HH