diff options
author | Erik Kundiman <erik@megapahit.org> | 2023-06-04 10:38:31 +0800 |
---|---|---|
committer | Erik Kundiman <erik@megapahit.org> | 2023-07-19 10:57:08 +0800 |
commit | 146f292869a0ca2a82768374c81ae519a5eee287 (patch) | |
tree | 1531a340014ea66b4050574a1bfec38c08456647 /indra | |
parent | f4c8949ac66d08263845f60a7cef2ecb9c77079b (diff) |
stdtypes.h includes C Std Lib stddef.h for size_t
in order to get rid of errors complaining that size_t was not declared
in the scope.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/stdtypes.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/llcommon/stdtypes.h b/indra/llcommon/stdtypes.h index da8512169c..192a8b97b1 100644 --- a/indra/llcommon/stdtypes.h +++ b/indra/llcommon/stdtypes.h @@ -29,6 +29,7 @@ #include <cassert> #include <cfloat> #include <climits> +#include <cstddef> #include <limits> #include <type_traits> |