mirror of
https://github.com/ToruNiina/toml11.git
synced 2025-09-17 17:58:09 +08:00
Do not use the macro shortcut for not
It is not required by the standard
This commit is contained in:
@@ -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);
|
||||
}
|
||||
};
|
||||
|
Reference in New Issue
Block a user