make include guards standards conforming

fix compile issues
This commit is contained in:
David Markowitz
2024-10-30 00:30:20 -07:00
parent bfe6900c26
commit 9655f0ee45
167 changed files with 497 additions and 497 deletions

View File

@@ -1,5 +1,5 @@
#ifndef __SERVER__H__
#define __SERVER__H__
#ifndef SERVER_H
#define SERVER_H
#include <string_view>
@@ -7,4 +7,4 @@ namespace Server {
void SetupLogger(const std::string_view serviceName);
};
#endif //!__SERVER__H__
#endif //!SERVER_H