From 0016362f69804ae18953a0ec11d0c108e8402e1d Mon Sep 17 00:00:00 2001 From: Phil Nash Date: Thu, 29 Jun 2017 16:31:05 +0100 Subject: [PATCH] explicit conversion from size_t to size_type --- include/internal/catch_stringref.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/internal/catch_stringref.cpp b/include/internal/catch_stringref.cpp index 147564de..4ee4f7dd 100644 --- a/include/internal/catch_stringref.cpp +++ b/include/internal/catch_stringref.cpp @@ -40,14 +40,14 @@ namespace Catch { StringRef::StringRef( char const* rawChars ) noexcept : m_start( rawChars ), - m_size( std::strlen( rawChars ) ) + m_size( static_cast( std::strlen( rawChars ) ) ) {} StringRef::StringRef( char const* rawChars, size_type size ) noexcept : m_start( rawChars ), m_size( size ) { - size_type rawSize = rawChars == nullptr ? 0 : std::strlen( rawChars ); + size_type rawSize = rawChars == nullptr ? 0 : static_cast( std::strlen( rawChars ) ); if( rawSize < size ) size = rawSize; }