Code quality: Fix header guards consistency
Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
This commit is contained in:
@ -74,4 +74,4 @@ public:
|
||||
~LightmapRaycasterEmbree();
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif // LIGHTMAP_RAYCASTER_H
|
||||
|
||||
@ -28,8 +28,8 @@
|
||||
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
||||
/*************************************************************************/
|
||||
|
||||
#ifndef OCCLUSION_CULL_RAYCASTER_H
|
||||
#define OCCLUSION_CULL_RAYCASTER_H
|
||||
#ifndef RAYCAST_OCCLUSION_CULL_H
|
||||
#define RAYCAST_OCCLUSION_CULL_H
|
||||
|
||||
#include "core/io/image.h"
|
||||
#include "core/math/projection.h"
|
||||
@ -192,4 +192,4 @@ public:
|
||||
~RaycastOcclusionCull();
|
||||
};
|
||||
|
||||
#endif // OCCLUSION_CULL_RAYCASTER_H
|
||||
#endif // RAYCAST_OCCLUSION_CULL_H
|
||||
|
||||
@ -61,4 +61,4 @@ public:
|
||||
~StaticRaycasterEmbree();
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif // STATIC_RAYCASTER_H
|
||||
|
||||
Reference in New Issue
Block a user