From 65bbb8f03ac8b5fde6e9164821c3400daeb133ec Mon Sep 17 00:00:00 2001
From: Sean McBride <sean@rogue-research.com>
Date: Mon, 7 Mar 2016 15:59:17 -0500
Subject: [PATCH] =?UTF-8?q?Suppress=20last=20-Wcomma=20warning=20since=20i?=
 =?UTF-8?q?t=E2=80=99s=20a=20reasonable=20usage?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 Filters/Hybrid/vtkFacetReader.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Filters/Hybrid/vtkFacetReader.cxx b/Filters/Hybrid/vtkFacetReader.cxx
index 0cb71096fd3..67fa4cdb87a 100644
--- a/Filters/Hybrid/vtkFacetReader.cxx
+++ b/Filters/Hybrid/vtkFacetReader.cxx
@@ -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);
-- 
GitLab