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

Fixed clang analyzer warning about dead store to 'cptr'.

Change-Id: I7ed36ce0e2988ba1a92459678d821a7ab8c77e80
parent 9c290871
No related branches found
No related tags found
No related merge requests found
......@@ -242,7 +242,6 @@ void vtkLookupTableWithEnablingMapData(vtkLookupTableWithEnabling *self, T *inpu
*output++ = r;
*output++ = g;
*output++ = b;
cptr+=3;
}
else
{
......@@ -329,7 +328,6 @@ void vtkLookupTableWithEnablingMapData(vtkLookupTableWithEnabling *self, T *inpu
*output++ = r;
*output++ = g;
*output++ = b;
cptr+=3;
}
else
{
......@@ -420,7 +418,6 @@ void vtkLookupTableWithEnablingMapData(vtkLookupTableWithEnabling *self, T *inpu
*output++ = r;
*output++ = g;
*output++ = b;
cptr+=3;
}
else
{
......@@ -514,7 +511,6 @@ void vtkLookupTableWithEnablingMapData(vtkLookupTableWithEnabling *self, T *inpu
*output++ = r;
*output++ = g;
*output++ = b;
cptr+=3;
}
else
{
......
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