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 __DCOMMONDEPENDENCIES__H__
#define __DCOMMONDEPENDENCIES__H__
#ifndef DCOMMONDEPENDENCIES_H
#define DCOMMONDEPENDENCIES_H
#include "Game.h"
#include "Logger.h"
@@ -21,4 +21,4 @@ protected:
}
};
#endif //!__DCOMMONDEPENDENCIES__H__
#endif //!DCOMMONDEPENDENCIES_H

View File

@@ -1,5 +1,5 @@
#ifndef __GAMEDEPENDENCIES__H__
#define __GAMEDEPENDENCIES__H__
#ifndef GAMEDEPENDENCIES_H
#define GAMEDEPENDENCIES_H
#include "Game.h"
#include "Logger.h"
@@ -52,4 +52,4 @@ protected:
EntityInfo info{};
};
#endif //!__GAMEDEPENDENCIES__H__
#endif //!GAMEDEPENDENCIES_H