From 4fbfc184970603c52f8e17e059c4ab24f69d4ec6 Mon Sep 17 00:00:00 2001 From: JDierkse Date: Sun, 9 Feb 2020 14:09:19 +0100 Subject: [PATCH] Fix Include order --- Logging/Logging.cpp | 4 ++-- include/Logging.h | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Logging/Logging.cpp b/Logging/Logging.cpp index 1360fb1..3df5ef9 100644 --- a/Logging/Logging.cpp +++ b/Logging/Logging.cpp @@ -1,8 +1,8 @@ -#include +#include "Logging.h" #include #include #include -#include "Logging.h" +#include namespace Logging { diff --git a/include/Logging.h b/include/Logging.h index 3e67aa7..3fa664b 100644 --- a/include/Logging.h +++ b/include/Logging.h @@ -1,5 +1,5 @@ -#ifndef LOGGER_H -#define LOGGER_H +#ifndef LOGGING_H +#define LOGGING_H #include @@ -39,4 +39,4 @@ void Syslog(int level, const char *format, ...); } // namespace Logging -#endif // LOGGING_LOGGER_H +#endif // LOGGING_H