Do not use the macro shortcut for not

It is not required by the standard
This commit is contained in:
Guillaume Fraux
2017-05-15 11:30:35 +02:00
parent 552de18501
commit 612119fa1e
2 changed files with 4 additions and 4 deletions

View File

@@ -109,7 +109,7 @@ struct is_chain_of_impl
static Iterator invoke(Iterator iter, Iterator rollback)
{
const Iterator tmp = headT::invoke(iter);
return (tmp == iter && not ignorable) ? rollback :
return (tmp == iter && !ignorable) ? rollback :
is_chain_of_impl<condT...>::invoke(tmp, rollback);
}
};