From 216ca62ae59d58f0b718d88f1749dc3cf34ead8e Mon Sep 17 00:00:00 2001 From: Rajat Goswami Date: Sat, 21 Mar 2020 21:29:40 -0400 Subject: [PATCH] Adding missing include guards to header files identified by LGTM. This addresses the issue godotengine/godot#37143 (cherry picked from commit 2ecf928ae39253f8cc72de1ad1391e8ed140ed6d) --- register_types.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/register_types.h b/register_types.h index 546c2fb..c18c293 100644 --- a/register_types.h +++ b/register_types.h @@ -28,5 +28,10 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ +#ifndef VISUAL_SCRIPT_REGISTER_TYPES_H +#define VISUAL_SCRIPT_REGISTER_TYPES_H + void register_visual_script_types(); void unregister_visual_script_types(); + +#endif // VISUAL_SCRIPT_REGISTER_TYPES_H