Skip to content
Snippets Groups Projects
Commit 65bbb8f0 authored by Sean McBride's avatar Sean McBride
Browse files

Suppress last -Wcomma warning since it’s a reasonable usage

parent 9206fc3d
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@ static bool GetLineFromStream(istream& is,
// If no characters are read from the stream, the end of file has
// been reached.
while((is.getline(buffer, bufferSize), is.gcount() > 0))
while(((void)(is.getline(buffer, bufferSize)), (is.gcount() > 0)))
{
haveData = true;
line.append(buffer);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment