git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@196 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2011-01-17 21:54:06 +00:00
parent 15567aefb6
commit 745fc739e3

View file

@ -98,9 +98,9 @@ namespace detail
template< typename Functor >
const constraint< detail::not_< Functor > >
operator!( const constraint< Functor >& ph )
operator!( const constraint< Functor >& c )
{
return detail::not_< Functor >( ph.f_ );
return detail::not_< Functor >( c.f_ );
}
}