Commit 8f0571dc authored by lakhinderwalia's avatar lakhinderwalia
Browse files

cppcheck warning fix for a previous checkin

parent a50cb302
......@@ -57,7 +57,7 @@ struct instruction_ref : std::list<instruction>::iterator
std::is_same<U, instruction_ref>{})>
friend bool operator!=(const T& x, const U& y)
{
return !(x == y);
return (not x == y);
}
};
#else
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment