From 77fbab86cca01b85a575e868f81a94ea8425935b Mon Sep 17 00:00:00 2001 From: heck Date: Tue, 1 Mar 2022 00:15:25 +0100 Subject: [PATCH] Update include guard defines --- src/CountingSemaphore.hh | 6 +++--- src/Semaphore.hh | 6 +++--- src/call_with_lock.hh | 6 +++--- src/constant_time_algo.hh | 6 +++--- src/locked_queue.hh | 6 +++--- src/pEpLog.hh | 6 +++--- src/pc_container.hh | 6 +++--- src/std_utils.hh | 6 +++--- src/std_utils.hxx | 6 +++--- 9 files changed, 27 insertions(+), 27 deletions(-) diff --git a/src/CountingSemaphore.hh b/src/CountingSemaphore.hh index ddd632c..1bed5e4 100644 --- a/src/CountingSemaphore.hh +++ b/src/CountingSemaphore.hh @@ -1,8 +1,8 @@ // This file is under GNU General Public License 3.0 // see LICENSE.txt -#ifndef LIBPEPADAPTER_COUNTING_SEMAPHORE_HH -#define LIBPEPADAPTER_COUNTING_SEMAPHORE_HH +#ifndef LIBPEPCXX11_COUNTING_SEMAPHORE_HH +#define LIBPEPCXX11_COUNTING_SEMAPHORE_HH #include #include @@ -66,4 +66,4 @@ namespace pEp { }; } // namespace pEp -#endif // LIBPEPADAPTER_COUNTING_SEMAPHORE_HH +#endif // LIBPEPCXX11_COUNTING_SEMAPHORE_HH diff --git a/src/Semaphore.hh b/src/Semaphore.hh index c026185..4f6c739 100644 --- a/src/Semaphore.hh +++ b/src/Semaphore.hh @@ -1,8 +1,8 @@ // This file is under GNU General Public License 3.0 // see LICENSE.txt -#ifndef LIBPEPADAPTER_SEMAPHORE_HH -#define LIBPEPADAPTER_SEMAPHORE_HH +#ifndef LIBPEPCXX11_SEMAPHORE_HH +#define LIBPEPCXX11_SEMAPHORE_HH #include #include @@ -48,4 +48,4 @@ namespace pEp { }; } // namespace pEp -#endif // LIBPEPADAPTER_SEMAPHORE_HH +#endif // LIBPEPCXX11_SEMAPHORE_HH diff --git a/src/call_with_lock.hh b/src/call_with_lock.hh index 7e38dae..391c937 100644 --- a/src/call_with_lock.hh +++ b/src/call_with_lock.hh @@ -1,8 +1,8 @@ // This file is under GNU General Public License 3.0 // see LICENSE.txt -#ifndef LIBPEPADAPTER_CALL_WITH_LOCK_HH -#define LIBPEPADAPTER_CALL_WITH_LOCK_HH +#ifndef LIBPEPCXX11_CALL_WITH_LOCK_HH +#define LIBPEPCXX11_CALL_WITH_LOCK_HH #include @@ -23,4 +23,4 @@ namespace pEp { } // namespace pEp -#endif // LIBPEPADAPTER_CALL_WITH_LOCK_HH +#endif // LIBPEPCXX11_CALL_WITH_LOCK_HH diff --git a/src/constant_time_algo.hh b/src/constant_time_algo.hh index c9e5733..fa34ae8 100644 --- a/src/constant_time_algo.hh +++ b/src/constant_time_algo.hh @@ -1,8 +1,8 @@ // This file is under GNU General Public License 3.0 // see LICENSE.txt -#ifndef LIBPEPADAPTER_CONSTANT_TIME_ALGO_HH -#define LIBPEPADAPTER_CONSTANT_TIME_ALGO_HH +#ifndef LIBPEPCXX11_CONSTANT_TIME_ALGO_HH +#define LIBPEPCXX11_CONSTANT_TIME_ALGO_HH #include @@ -16,4 +16,4 @@ namespace pEp { } // end of namespace pEp -#endif // LIBPEPADAPTER_CONSTANT_TIME_ALGO_HH +#endif // LIBPEPCXX11_CONSTANT_TIME_ALGO_HH diff --git a/src/locked_queue.hh b/src/locked_queue.hh index 008ecdd..40081e9 100644 --- a/src/locked_queue.hh +++ b/src/locked_queue.hh @@ -1,8 +1,8 @@ // This file is under GNU General Public License 3.0 // see LICENSE.txt -#ifndef LIBPEPADAPTER_LOCKED_QUEUE_HH -#define LIBPEPADAPTER_LOCKED_QUEUE_HH +#ifndef LIBPEPCXX11_LOCKED_QUEUE_HH +#define LIBPEPCXX11_LOCKED_QUEUE_HH #include #include @@ -177,4 +177,4 @@ namespace utility { } // end of namespace utility -#endif // LIBPEPADAPTER_LOCKED_QUEUE_HH +#endif // LIBPEPCXX11_LOCKED_QUEUE_HH diff --git a/src/pEpLog.hh b/src/pEpLog.hh index 8a2083b..8dbb734 100644 --- a/src/pEpLog.hh +++ b/src/pEpLog.hh @@ -1,8 +1,8 @@ // This file is under GNU General Public License 3.0 // see LICENSE.txt -#ifndef LIBPEPADAPTER_PEPLOG_HH -#define LIBPEPADAPTER_PEPLOG_HH +#ifndef LIBPEPCXX11_PEPLOG_HH +#define LIBPEPCXX11_PEPLOG_HH // getpid // Linux - unistd.h @@ -225,4 +225,4 @@ namespace pEp { } // namespace pEp -#endif // LIBPEPADAPTER_PEPLOG_HH +#endif // LIBPEPCXX11_PEPLOG_HH diff --git a/src/pc_container.hh b/src/pc_container.hh index d41e176..1b73b0f 100644 --- a/src/pc_container.hh +++ b/src/pc_container.hh @@ -1,8 +1,8 @@ // This file is under GNU General Public License 3.0 // see LICENSE.txt -#ifndef LIBPEPADAPTER_PC_CONTAINER_HH -#define LIBPEPADAPTER_PC_CONTAINER_HH +#ifndef LIBPEPCXX11_PC_CONTAINER_HH +#define LIBPEPCXX11_PC_CONTAINER_HH // Container adapter that contains a container and a producer/consume queue // that holds references to all changed elements @@ -83,5 +83,5 @@ private: }; } // end of namespace pEp -#endif // LIBPEPADAPTER_PC_CONTAINER_HH +#endif // LIBPEPCXX11_PC_CONTAINER_HH diff --git a/src/std_utils.hh b/src/std_utils.hh index ff226b1..7cd401f 100644 --- a/src/std_utils.hh +++ b/src/std_utils.hh @@ -1,8 +1,8 @@ // This file is under GNU General Public License 3.0 // see LICENSE.txt -#ifndef LIBPEPADAPTER_STD_UTILS_HH -#define LIBPEPADAPTER_STD_UTILS_HH +#ifndef LIBPEPCXX11_STD_UTILS_HH +#define LIBPEPCXX11_STD_UTILS_HH #include #include @@ -111,4 +111,4 @@ namespace pEp { #include "std_utils.hxx" -#endif // LIBPEPADAPTER_STD_UTILS_HH \ No newline at end of file +#endif // LIBPEPCXX11_STD_UTILS_HH \ No newline at end of file diff --git a/src/std_utils.hxx b/src/std_utils.hxx index de6779c..5ca1dcc 100644 --- a/src/std_utils.hxx +++ b/src/std_utils.hxx @@ -1,8 +1,8 @@ // This file is under GNU General Public License 3.0 // see LICENSE.txt -#ifndef LIBPEPADAPTER_STD_UTILS_HXX -#define LIBPEPADAPTER_STD_UTILS_HXX +#ifndef LIBPEPCXX11_STD_UTILS_HXX +#define LIBPEPCXX11_STD_UTILS_HXX #include #include @@ -94,4 +94,4 @@ namespace pEp { } // namespace Utils } // namespace pEp -#endif // LIBPEPADAPTER_STD_UTILS_HXX +#endif // LIBPEPCXX11_STD_UTILS_HXX