Fixed missing variable initialization

git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@566 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2012-09-21 22:19:35 +00:00
parent ff0f8f6832
commit 3e3746dce5

View file

@ -275,7 +275,7 @@ BOOST_AUTO_TEST_CASE( contain_with_const_char_ptr )
BOOST_CHECK( ! mock::contain( "not found" ).f_( "this is a string" ) );
BOOST_CHECK( ! mock::contain( "not found" ).f_( std::string( "this is a string" ) ) );
{
const char* s;
const char* s = 0;
mock::constraint<
mock::detail::contain<
boost::reference_wrapper< const char* const >