Skip to content
Snippets Groups Projects
Commit 44e76307 authored by Adam Wardynski's avatar Adam Wardynski
Browse files

GCC suggests putting () around && within ||. Let them have it.

parent 6f5dbd5b
No related merge requests found
......@@ -61,7 +61,7 @@ public:
*/
bool equals(const Position& other, const SentenceContext& context) const
{
return equals(other) || is_outside(context) && other.is_outside(context);
return equals(other) || (is_outside(context) && other.is_outside(context));
}
private:
......
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