This release fixes a compilation error when building with VS2015.
A side effect is that the round parenthesis syntax used to wrap signatures containing commas has now become deprecated: it may or may not work dependening on the compiler used.
The recommended way now is:
MOCK_CLASS( mock_class )
{
MOCK_METHOD( method, 0, BOOST_IDENTITY_TYPE((std::map< int, int >())) )
};
For more information see http://turtle.sf.net