Skip to content

Commit 533b31f

Browse files
committed
Fixed warning about possible operator precedence mistake.
1 parent a2fb8ea commit 533b31f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ProcessPreviousLine.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -746,7 +746,7 @@ assemble the full text of the original line.
746746
if (!m_LineList.IsEmpty ())
747747
{
748748
m_pCurrentLine = m_LineList.GetTail ();
749-
if ((m_pCurrentLine->flags & COMMENT == 0) ||
749+
if (((m_pCurrentLine->flags & COMMENT) == 0) ||
750750
m_pCurrentLine->hard_return)
751751
m_pCurrentLine = NULL;
752752
}

0 commit comments

Comments
 (0)