mirror of
https://github.com/catchorg/Catch2.git
synced 2025-09-16 02:05:38 +02:00
Merge pull request #1 from afoster1/master
Need support for Sun Studio 12.1
This commit is contained in:
@@ -218,7 +218,12 @@ namespace Catch {
|
||||
|
||||
// using messages.end() directly yields compilation error:
|
||||
std::vector<MessageInfo>::const_iterator itEnd = messages.end();
|
||||
# ifdef CATCH_INTERNAL_SUNPRO_CC_NON_COMPLIANT_STL
|
||||
std::size_t N;
|
||||
std::distance( itMessage, itEnd, N );
|
||||
# else
|
||||
const std::size_t N = static_cast<std::size_t>( std::distance( itMessage, itEnd ) );
|
||||
# endif // CATCH_INTERNAL_SUNPRO_CC_NON_COMPLIANT_STL
|
||||
|
||||
{
|
||||
Colour colourGuard( colour );
|
||||
|
Reference in New Issue
Block a user