Pārlūkot izejas kodu

Fix Include order

JDierkse 5 gadi atpakaļ
vecāks
revīzija
4fbfc18497
2 mainītis faili ar 5 papildinājumiem un 5 dzēšanām
  1. 2 2
      Logging/Logging.cpp
  2. 3 3
      include/Logging.h

+ 2 - 2
Logging/Logging.cpp

@@ -1,8 +1,8 @@
-#include <iostream>
+#include "Logging.h"
 #include <stdarg.h>
 #include <stdio.h>
 #include <syslog.h>
-#include "Logging.h"
+#include <iostream>
 
 
 namespace Logging {

+ 3 - 3
include/Logging.h

@@ -1,5 +1,5 @@
-#ifndef LOGGER_H
-#define LOGGER_H
+#ifndef LOGGING_H
+#define LOGGING_H
 
 #include <string>
 
@@ -39,4 +39,4 @@ void Syslog(int level, const char *format, ...);
 
 } // namespace Logging
 
-#endif // LOGGING_LOGGER_H
+#endif // LOGGING_H