From fe489a0af4e04a97c8bab743c8dc6c47f56db6ca Mon Sep 17 00:00:00 2001 From: tqcq <99722391+tqcq@users.noreply.github.com> Date: Tue, 16 Jul 2024 17:40:02 +0800 Subject: [PATCH] fix header guard --- tile/init.h | 6 +++--- tile/tile.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tile/init.h b/tile/init.h index 16eb335..0350f76 100644 --- a/tile/init.h +++ b/tile/init.h @@ -1,5 +1,5 @@ -#ifndef _TILE_INIT_H -#define _TILE_INIT_H +#ifndef TILE_INIT_H +#define TILE_INIT_H #pragma once @@ -17,4 +17,4 @@ void TerminateBasicRuntime(); } // namespace tile -#endif // _TILE_INIT_H +#endif // TILE_INIT_H diff --git a/tile/tile.h b/tile/tile.h index 9aee696..b1c4372 100644 --- a/tile/tile.h +++ b/tile/tile.h @@ -1,5 +1,5 @@ -#ifndef _TILE_TILE_H -#define _TILE_TILE_H +#ifndef TILE_TILE_H +#define TILE_TILE_H #pragma once @@ -46,4 +46,4 @@ // Tile Init #include "tile/init.h" -#endif// _TILE_TILE_H +#endif // TILE_TILE_H