When I compile using gcc on pedantic I&#39;ve been bothered by a warning for years. Was hoping someone with commit access could spend about 12 seconds and fix this.<br><br>The warning reads<br>In file included from external/matplot/matplot.h:40:0,<br>
                 from /home/tirons/src/Merlin/include/snmrinversion1damp.h:45,<br>                 from /home/tirons/src/Merlin/unittest/utsnmrinversion1dgmrsimul.cpp:40:<br>/usr/local/include/vtk-6.0/vtkXYPlotActor.h:395:28: warning: comma at end of enumerator list [-pedantic]<br>
<br>In vtkXYPlotActor.h line 395 there is an extra comma :<br><br>enum Alignment {<br>  AlignLeft = 0x1,<br>  AlignRight = 0x2,<br>  AlignHCenter = 0x4,<br>  AlignTop = 0x10,<br>  AlignBottom = 0x20,<br>  AlignVCenter = 0x40,<br>
  AlignAxisLeft = 0x100,<br>  AlignAxisRight = 0x200,<br>  AlignAxisHCenter = 0x400,<br>  AlignAxisTop = 0x1000,<br>  AlignAxisBottom = 0x2000,<br>  AlignAxisVCenter = 0x4000,         &lt;-- Extra comma right here<br>};<br>
<br>I would really appreciate it if someone with commit privileges could remove this.<br><br>Thanks,<br><br clear="all">-- Trevor<br><br>