diff options
author | Rajat Goswami <rajat.goswami@hotmail.com> | 2020-03-21 21:29:40 -0400 |
---|---|---|
committer | Rajat Goswami <rajat.goswami@hotmail.com> | 2020-03-23 04:52:36 -0400 |
commit | 2ecf928ae39253f8cc72de1ad1391e8ed140ed6d (patch) | |
tree | 8c6d73d8a76ee63c10159e2d853889164cf6ab62 /modules/cvtt | |
parent | cce0a27ec7dd7c11fcb37eb724b0b7e97b3b1478 (diff) |
Adding missing include guards to header files identified by LGTM.
This addresses the issue godotengine/godot#37143
Diffstat (limited to 'modules/cvtt')
-rw-r--r-- | modules/cvtt/register_types.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/modules/cvtt/register_types.h b/modules/cvtt/register_types.h index 93f684cdd1..8472980c6a 100644 --- a/modules/cvtt/register_types.h +++ b/modules/cvtt/register_types.h @@ -29,6 +29,13 @@ /*************************************************************************/ #ifdef TOOLS_ENABLED + +#ifndef CVTT_REGISTER_TYPES_H +#define CVTT_REGISTER_TYPES_H + void register_cvtt_types(); void unregister_cvtt_types(); -#endif + +#endif // CVTT_REGISTER_TYPES_H + +#endif // TOOLS_ENABLED |