Merge pull request #88 from klmr/master

Warning "unused parameter" silenced
This commit is contained in:
Phil Nash 2012-05-25 00:47:22 -07:00
commit eb22e212c0
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ inline std::string toString( bool value ) {
}
#ifdef CATCH_CONFIG_CPP11_NULLPTR
inline std::string toString( std::nullptr_t null ) {
inline std::string toString( std::nullptr_t ) {
return "nullptr";
}
#endif