summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorErik Kundiman <erik@megapahit.org>2023-06-04 10:38:31 +0800
committerErik Kundiman <erik@megapahit.org>2023-07-19 10:57:08 +0800
commit146f292869a0ca2a82768374c81ae519a5eee287 (patch)
tree1531a340014ea66b4050574a1bfec38c08456647 /indra
parentf4c8949ac66d08263845f60a7cef2ecb9c77079b (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.h1
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>