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 ANDROID_API_H
#define ANDROID_API_H
void register_android_api();
void unregister_android_api();
#endif // ANDROID_API_H