2018-03-11 20:14:22 +00:00
|
|
|
#ifndef FC_PACK_MAX_DEPTH
|
|
|
|
|
// The maximum level of object nesting is around 20% of this value
|
|
|
|
|
#define FC_PACK_MAX_DEPTH 1000
|
|
|
|
|
#endif
|
2018-03-13 21:33:21 +00:00
|
|
|
|
|
|
|
|
#ifndef FC_MAX_LOG_OBJECT_DEPTH
|
|
|
|
|
// how many levels of nested objects are displayed in log messages
|
|
|
|
|
#define FC_MAX_LOG_OBJECT_DEPTH 200
|
2018-12-25 07:16:54 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#ifndef FC_MAX_PREALLOC_SIZE
|
|
|
|
|
// how many elements will be reserve()d when deserializing vectors
|
2019-01-07 18:01:33 +00:00
|
|
|
#define FC_MAX_PREALLOC_SIZE (256UL)
|
2018-12-25 07:16:54 +00:00
|
|
|
#endif
|