From c283d7a07b4cc7475dbb0d182e00df5e55727488 Mon Sep 17 00:00:00 2001 From: Alexey Sokolov Date: Sat, 21 Nov 2015 10:35:03 +0000 Subject: [PATCH] Fix include guard of Message.h --- include/znc/Message.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/znc/Message.h b/include/znc/Message.h index 2ceb39ce..403b1cf4 100644 --- a/include/znc/Message.h +++ b/include/znc/Message.h @@ -14,8 +14,8 @@ * limitations under the License. */ -#ifndef _MESSAGE_H -#define _MESSAGE_H +#ifndef ZNC_MESSAGE_H +#define ZNC_MESSAGE_H #include #include @@ -213,4 +213,4 @@ static_assert(sizeof(CTargetMessage) == sizeof(CMessage), "No data members allow static_assert(sizeof(CTextMessage) == sizeof(CMessage), "No data members allowed in CMessage subclasses."); static_assert(sizeof(CTopicMessage) == sizeof(CMessage), "No data members allowed in CMessage subclasses."); -#endif // !_MESSAGE_H +#endif // !ZNC_MESSAGE_H