Removed redundant const

(also fixed test counts)
This commit is contained in:
Phil Nash
2012-04-28 12:39:15 +01:00
parent 861a1e79cf
commit 83a66a6255
3 changed files with 3 additions and 3 deletions

View File

@@ -131,7 +131,7 @@ inline std::string toString
char* const value
)
{
return Catch::toString( static_cast<const char* const>( value ) );
return Catch::toString( static_cast<const char*>( value ) );
}
///////////////////////////////////////////////////////////////////////////////