Skip to content

Commit 730951f

Browse files
committed
[build] Group logical operators (clang warning)
1 parent 4a98be8 commit 730951f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/utils/point.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ inline std::basic_istream<C>& operator >> (std::basic_istream<C>& is, basic_vect
123123
is >> op;
124124
is >> v.y;
125125

126-
if(op != C(',') && op != C('x') && op != C('|') || is.bad())
126+
if((op != C(',') && op != C('x') && op != C('|')) || is.bad())
127127
{
128128
throw std::runtime_error("Not able to convert from stream to vector!");
129129
}

0 commit comments

Comments
 (0)