git-svn-id: https://svn.code.sf.net/p/turtle/code/trunk@201 860be788-9bd5-4423-9f1e-828f051e677b
This commit is contained in:
mat007 2011-01-19 16:31:42 +00:00
parent c1aafd3aa7
commit 87d34f4137

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_ );
}
}