Changed MAX_PREALLOC_SIZE to 2^8

This commit is contained in:
Peter Conrad 2019-01-07 19:01:33 +01:00
parent 90f8ad5722
commit 72eeb62535

View file

@ -10,5 +10,5 @@
#ifndef FC_MAX_PREALLOC_SIZE #ifndef FC_MAX_PREALLOC_SIZE
// how many elements will be reserve()d when deserializing vectors // how many elements will be reserve()d when deserializing vectors
#define FC_MAX_PREALLOC_SIZE (200UL) #define FC_MAX_PREALLOC_SIZE (256UL)
#endif #endif