git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@448 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2012-05-08 14:31:09 +00:00
parent 5d4258941e
commit 8a572c34f9

View file

@ -272,10 +272,10 @@ namespace mock
: impl_( impl )
{}
friend std::ostream& operator<<(
std::ostream& s, const lazy_context& e )
std::ostream& s, const lazy_context& c )
{
if( e.impl_->context_ )
e.impl_->context_->serialize( s, *e.impl_ );
if( c.impl_->context_ )
c.impl_->context_->serialize( s, *c.impl_ );
else
s << "?";
return s;