From 2ecf928ae39253f8cc72de1ad1391e8ed140ed6d Mon Sep 17 00:00:00 2001 From: Rajat Goswami Date: Sat, 21 Mar 2020 21:29:40 -0400 Subject: Adding missing include guards to header files identified by LGTM. This addresses the issue godotengine/godot#37143 --- modules/gdnative/pluginscript/register_types.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'modules/gdnative/pluginscript') diff --git a/modules/gdnative/pluginscript/register_types.h b/modules/gdnative/pluginscript/register_types.h index a4f7284b54..c6a64b4f40 100644 --- a/modules/gdnative/pluginscript/register_types.h +++ b/modules/gdnative/pluginscript/register_types.h @@ -28,5 +28,10 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ +#ifndef PLUGINSCRIPT_REGISTER_TYPES_H +#define PLUGINSCRIPT_REGISTER_TYPES_H + void register_pluginscript_types(); void unregister_pluginscript_types(); + +#endif // PLUGINSCRIPT_REGISTER_TYPES_H -- cgit v1.2.3