From 72eeb625358e22551b83e80c8e871056d6e1ad70 Mon Sep 17 00:00:00 2001 From: Peter Conrad Date: Mon, 7 Jan 2019 19:01:33 +0100 Subject: [PATCH] Changed MAX_PREALLOC_SIZE to 2^8 --- include/fc/config.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/fc/config.hpp b/include/fc/config.hpp index 1c1f1c8..a67a22d 100644 --- a/include/fc/config.hpp +++ b/include/fc/config.hpp @@ -10,5 +10,5 @@ #ifndef FC_MAX_PREALLOC_SIZE // how many elements will be reserve()d when deserializing vectors -#define FC_MAX_PREALLOC_SIZE (200UL) +#define FC_MAX_PREALLOC_SIZE (256UL) #endif