gcc 64 warning, missing integer case Cdisplay Dtor
Status: Beta
Brought to you by:
render_man
Pixie 2.2.6 see below ++ line : 194
// Class : COptions::CDisplay
// Method : ~CDisplay
// Description : Dtor
// Return Value : -
// Comments :
COptions::CDisplay::~CDisplay() {
if (outDevice != NULL) free(outDevice);
if (outName != NULL) free(outName);
if (outSamples != NULL) free(outSamples);
if (parameters != NULL) {
int i;
for (i=0;i<numParameters;i++) {
switch(parameters[i].type) {
++ case INTEGER_PARAMETER:
++ delete [] (int *) parameters[i].data;
++ break;
......
source changed