diff options
author | Rémi Verschelde <remi@verschelde.fr> | 2021-02-02 22:04:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-02 22:04:39 +0100 |
commit | 235d891e00067fdbaabdf5d241bc04a846e9a28f (patch) | |
tree | 56ab45368c9359490feacde42b1ca065b8641aaf | |
parent | 9e0bdeb5de323f5ec7c21511478a2b2524e70fc3 (diff) | |
parent | f02252e37d043c58f9f5414196303196c2c45f20 (diff) |
Merge pull request #45653 from migueldeicaza/patch-1
C conformance: Replace "bool" as the base definition for boolean with char
-rw-r--r-- | modules/gdnative/include/gdnative/math_defs.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdnative/include/gdnative/math_defs.h b/modules/gdnative/include/gdnative/math_defs.h index 05de157dd0..b5cf389506 100644 --- a/modules/gdnative/include/gdnative/math_defs.h +++ b/modules/gdnative/include/gdnative/math_defs.h @@ -35,6 +35,7 @@ extern "C" { #endif +#include <stdbool.h> #include <stdint.h> ////// bool |