diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-07-25 14:50:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-25 14:50:38 +0200 |
commit | 679633f50538f615dab70c070402970fef298a6c (patch) | |
tree | 455805c3a8c1d81fce06bdfe2c4748da41b1aea1 /scene/3d/visual_instance_3d.h | |
parent | 18596f6b3dd8a3bda04d0367d37f94c579a8a6e7 (diff) | |
parent | 90019676b076abdfc076ed6f38005d6cce89923b (diff) |
Merge pull request #63368 from akien-mga/fix_header_guards
Code quality: Fix header guards consistency
Diffstat (limited to 'scene/3d/visual_instance_3d.h')
-rw-r--r-- | scene/3d/visual_instance_3d.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scene/3d/visual_instance_3d.h b/scene/3d/visual_instance_3d.h index 9e0d9b9a2a..159b14613c 100644 --- a/scene/3d/visual_instance_3d.h +++ b/scene/3d/visual_instance_3d.h @@ -28,8 +28,8 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ -#ifndef VISUAL_INSTANCE_H -#define VISUAL_INSTANCE_H +#ifndef VISUAL_INSTANCE_3D_H +#define VISUAL_INSTANCE_3D_H #include "scene/3d/node_3d.h" @@ -196,4 +196,4 @@ VARIANT_ENUM_CAST(GeometryInstance3D::LightmapScale); VARIANT_ENUM_CAST(GeometryInstance3D::GIMode); VARIANT_ENUM_CAST(GeometryInstance3D::VisibilityRangeFadeMode); -#endif +#endif // VISUAL_INSTANCE_3D_H |