Silence "unused parameter" warning.

This commit is contained in:
Konrad Rudolph 2012-05-23 11:22:49 +01:00
parent 4df051bcf4
commit 84434be949
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