diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-03-23 11:17:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-23 11:17:24 +0100 |
commit | cbbe0743a9155f06d03d4b906209933192a02731 (patch) | |
tree | b3b78749b4a182c9e1779c8bcad5c06d487b9e6e /platform/android | |
parent | ed9a0d0484411e631b0cc927e46dc234054d5ae5 (diff) | |
parent | 2ecf928ae39253f8cc72de1ad1391e8ed140ed6d (diff) |
Merge pull request #37219 from RajatGoswami/missing-include-guards
Adding missing include guards to header files identified by LGTM
Diffstat (limited to 'platform/android')
-rw-r--r-- | platform/android/api/api.h | 5 | ||||
-rw-r--r-- | platform/android/export/export.h | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/platform/android/api/api.h b/platform/android/api/api.h index c7296d92a7..5e951b9c88 100644 --- a/platform/android/api/api.h +++ b/platform/android/api/api.h @@ -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 diff --git a/platform/android/export/export.h b/platform/android/export/export.h index ce786cc8b6..d11ab9f49e 100644 --- a/platform/android/export/export.h +++ b/platform/android/export/export.h @@ -28,4 +28,9 @@ /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*************************************************************************/ +#ifndef ANDROID_EXPORT_H +#define ANDROID_EXPORT_H + void register_android_exporter(); + +#endif // ANDROID_EXPORT_H |