$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: [boost] [serialization] incompatible archives from 1.43 to 1.44
From: Evonik Energy Services GmbH (tobias.loew_at_[hidden])
Date: 2010-09-13 06:13:05
Hi,
I'm trying to read a binary archive with version 1.44 that was written with version 1.43.
When loading I'm getting an exception in basic_binary_iarchive.ipp line 91 as the read library-version is higher than the boost-archive-version.
The reason for that is that in line 80
* this->This() >> input_library_version;
now two bytes are read whereas in prior boost-versions only one byte was read. There seems to be missing a load_override-function for library_version_type.
Tobias