From 8a572c34f9d69e17d0133970753ed9afa5f3207a Mon Sep 17 00:00:00 2001 From: mat007 Date: Tue, 8 May 2012 14:31:09 +0000 Subject: [PATCH] Cleanup git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@448 860be788-9bd5-4423-9f1e-828f051e677b --- src/libraries/turtle/function.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libraries/turtle/function.hpp b/src/libraries/turtle/function.hpp index 607f26c..1fee2bc 100644 --- a/src/libraries/turtle/function.hpp +++ b/src/libraries/turtle/function.hpp @@ -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;