
----- Original Message ----- From: "Lars Viklund" <zao@acc.umu.se> To: <boost@lists.boost.org> Sent: Monday, August 09, 2010 8:55 AM Subject: Re: [boost] [chrono] Compatibility issues with 1.44
On Sat, Aug 07, 2010 at 04:09:07AM -0700, Vicente Botet Escriba wrote:
I have made it compatible with older versions using the version to get rid of the Boost.System interface break.
#if (BOOST_VERSION / 100 % 1000) < 44 system::system_error( errno, system::system_category, "chrono::system_clock" )); #else system::system_error( errno, system::system_category(), "chrono::system_clock" )); #endif
What is the policy of Boost version numbering, will there ever be a Boost 2.xx release? If so, your test would fail as you do not test the major version.
Hi, I will take in consideration your issue, thanks, Vicente