Re: [Boost-users] [boost] 1.55.0 beta 1 release candidates available for testing

2013/10/8 Domagoj Saric
On 3.10.2013. 18:19, Marshall Clow wrote:> Release candidate files for 1.55.0 beta 1 are available at
As always, the release managers would appreciate it if you download the candidate of your choice and give building it a try. Please report both success and failure, and anything else that is noteworthy.
With MSVC12 RC: * 1.54 and 1.55 b1 RC - lots of: .\boost/iterator/detail/**facade_iterator_category.hpp(**166) : error C2039: 'assert_not_arg' : is not a member of 'boost::mpl'
This issue fixed by this commit. http://lists.boost.org/boost-commit/2013/05/46330.php However, not merge to release branch yet.

Hello,
I'm trying to build some projects using Boost 1.55 and VS2013 RC targeting
Visual Studio 2013 RC (v120), i.e. MSVC12. I'm currently getting a problem
with Boost.Signals2. After much head scratching, I created a test project
lifting the simplest Hello World example from the Boost.Signals2 docs. It
works, but adapting to receive the "Hello, World!" string, it fails. Also
note, oddly, adding the result_type typedef is required whereas it is not
under MSVC11. Any ideas?
BTW: the code works fine in MSVC11 ...
struct HelloWorld
{
typedef void result_type; // <--- This seems to be required for MSVC12 RC
void operator()(std::string msg) const
{
std::cout << msg << std::endl;
}
};
int main()
{
boost::signals2::signal
2013/10/8 Domagoj Saric
On 3.10.2013. 18:19, Marshall Clow wrote:> Release candidate files for 1.55.0 beta 1 are available at
As always, the release managers would appreciate it if you download the candidate of your choice and give building it a try. Please report both success and failure, and anything else that is noteworthy.
With MSVC12 RC: * 1.54 and 1.55 b1 RC - lots of: .\boost/iterator/detail/**facade_iterator_category.hpp(**166) : error C2039: 'assert_not_arg' : is not a member of 'boost::mpl'
This issue fixed by this commit. http://lists.boost.org/boost-commit/2013/05/46330.php
However, not merge to release branch yet.
_______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
participants (2)
-
Akira Takahashi
-
Richard Rowlands