diff options
Diffstat (limited to 'serialize.h')
-rw-r--r-- | serialize.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/serialize.h b/serialize.h index 3797159726..e1404b7068 100644 --- a/serialize.h +++ b/serialize.h @@ -2,8 +2,10 @@ // Distributed under the MIT/X11 software license, see the accompanying // file license.txt or http://www.opensource.org/licenses/mit-license.php. +#include <string> #include <vector> #include <map> +#include <set> #include <boost/type_traits/is_fundamental.hpp> #if defined(_MSC_VER) || defined(__BORLANDC__) typedef __int64 int64; @@ -18,10 +20,9 @@ typedef unsigned long long uint64; class CScript; class CDataStream; class CAutoFile; - static const unsigned int MAX_SIZE = 0x02000000; -static const int VERSION = 311; +static const int VERSION = 312; static const char* pszSubVer = ".0"; |