Adding missing include guards to header files identified by LGTM.

This addresses the issue godotengine/godot#37143

(cherry picked from commit 2ecf928ae3)
This commit is contained in:
Rajat Goswami
2020-03-21 21:29:40 -04:00
committed by Rémi Verschelde
parent bdde501594
commit 19e71f94d8
50 changed files with 255 additions and 4 deletions

View File

@ -28,5 +28,10 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#ifndef ENET_REGISTER_TYPES_H
#define ENET_REGISTER_TYPES_H
void register_enet_types();
void unregister_enet_types();
#endif // ENET_REGISTER_TYPES_H