Suppress warning in gpencil_paint.c with parentheses around logical operators
This suppresses the following warning on clang-13 (and -Wparenthesis on
gcc) by clarifying the precedence of && over ||.
../source/blender/editors/gpencil/gpencil_paint.c:1239:21: warning: '&&' within '||' [-Wlogical-op-parentheses]
if ((!is_depth) && ((align_flag & GP_PROJECT_VIEWSPACE) && is_lock_axis_view) || is_camera) {
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~
../source/blender/editors/gpencil/gpencil_paint.c:1239:21: note: place parentheses around the '&&' expression to silence this warning
if ((!is_depth) && ((align_flag & GP_PROJECT_VIEWSPACE) && is_lock_axis_view) || is_camera) {
^
( )