peerplays-fc/include/fc/config.hpp

14 lines
438 B
C++
Raw Normal View History

#ifndef FC_PACK_MAX_DEPTH
// The maximum level of object nesting is around 20% of this value
#define FC_PACK_MAX_DEPTH 1000
#endif
2022-03-04 22:20:05 +00:00
#ifndef FC_MAX_STRING_OBJECT_DEPTH
// how many levels of nested objects are proceed for string functions
#define FC_MAX_STRING_OBJECT_DEPTH 200
#endif
#ifndef FC_MAX_LOG_OBJECT_DEPTH
// how many levels of nested objects are displayed in log messages
2022-03-04 22:20:05 +00:00
#define FC_MAX_LOG_OBJECT_DEPTH 1000
#endif