diff options
| author | Amlal <amlal@el-mahrouss-logic.com> | 2024-10-24 20:09:47 +0200 |
|---|---|---|
| committer | Amlal <amlal@el-mahrouss-logic.com> | 2024-10-24 20:09:47 +0200 |
| commit | 8e7d45313ea676125db1f53af558d68bb1d6dbaa (patch) | |
| tree | 3fd378eba092517aca02d1d441828af3239b3374 /dev | |
| parent | 65b065641ddb93de37cff2033789f3df6a254946 (diff) | |
FIX: Replace _HXX__ endings with _H__ endings inside header guards.
Signed-off-by: Amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'dev')
| -rw-r--r-- | dev/LibC++/defines.h | 6 | ||||
| -rw-r--r-- | dev/ToolchainKit/Defines.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/dev/LibC++/defines.h b/dev/LibC++/defines.h index b362bb7..da751ee 100644 --- a/dev/LibC++/defines.h +++ b/dev/LibC++/defines.h @@ -4,8 +4,8 @@ ------------------------------------------- */ -#ifndef __TOOLCHAINKIT_DEFINES_HXX__ -#define __TOOLCHAINKIT_DEFINES_HXX__ +#ifndef __TOOLCHAINKIT_DEFINES_H__ +#define __TOOLCHAINKIT_DEFINES_H__ #include <stdint.h> #include <stddef.h> @@ -122,4 +122,4 @@ namespace std } } // namespace std -#endif /* __TOOLCHAINKIT_DEFINES_HXX__ */ +#endif /* __TOOLCHAINKIT_DEFINES_H__ */ diff --git a/dev/ToolchainKit/Defines.h b/dev/ToolchainKit/Defines.h index f65d96d..978a5a2 100644 --- a/dev/ToolchainKit/Defines.h +++ b/dev/ToolchainKit/Defines.h @@ -4,8 +4,8 @@ ------------------------------------------- */ -#ifndef __TOOLCHAINKIT_DEFINES_HXX__ -#define __TOOLCHAINKIT_DEFINES_HXX__ +#ifndef __TOOLCHAINKIT_DEFINES_H__ +#define __TOOLCHAINKIT_DEFINES_H__ #ifndef Yes #define Yes true @@ -157,4 +157,4 @@ typedef char char_type; #pragma scalar_storage_order big - endian #endif // ifdef MSVC -#endif /* ifndef __TOOLCHAINKIT_DEFINES_HXX__ */ +#endif /* ifndef __TOOLCHAINKIT_DEFINES_H__ */ |
