diff options
author | Miguel de Icaza <miguel@gnome.org> | 2021-02-01 23:26:20 -0500 |
---|---|---|
committer | Miguel de Icaza <miguel@gnome.org> | 2021-02-02 18:11:00 +0100 |
commit | f02252e37d043c58f9f5414196303196c2c45f20 (patch) | |
tree | 4519b736f1ed1c6ec60b97b4db1f2429923ff384 | |
parent | ea1e26f312c3a03816bc69850e5cd74c353d4bb6 (diff) | |
download | redot-engine-f02252e37d043c58f9f5414196303196c2c45f20.tar.gz |
C conformance: Include stdbool.h to define `bool`
`bool` is otherwise not defined in C.
-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 |