diff --git a/turtle/detail/check.hpp b/turtle/detail/check.hpp index a7ec0ce..0691ded 100644 --- a/turtle/detail/check.hpp +++ b/turtle/detail/check.hpp @@ -15,6 +15,7 @@ #include #include #include +#include namespace mock { @@ -66,7 +67,7 @@ namespace detail {} virtual bool operator()( const char* actual ) { - return strcmp( actual, expected_ ) == 0; + return std::strcmp( actual, expected_ ) == 0; } private: virtual void serialize( std::ostream& s ) const