COMP: Fix warnings in cmELF.
This commit is contained in:
parent
6c7d32394c
commit
fcad490654
|
@ -85,7 +85,7 @@ public:
|
|||
}
|
||||
|
||||
// Destruct and delete the file stream object.
|
||||
~cmELFInternal()
|
||||
virtual ~cmELFInternal()
|
||||
{
|
||||
delete &this->Stream;
|
||||
}
|
||||
|
@ -187,6 +187,9 @@ public:
|
|||
}
|
||||
switch(this->ELFType)
|
||||
{
|
||||
case cmELF::FileTypeInvalid:
|
||||
os << " invalid file";
|
||||
break;
|
||||
case cmELF::FileTypeRelocatableObject:
|
||||
os << " relocatable object";
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue