coverity#1371198 Missing move assignment operator

Change-Id: I89a718a245ea36f33c47f8044280bf7e46c0f66a
This commit is contained in:
Caolán McNamara
2017-01-13 13:48:49 +00:00
parent 6bd96eda06
commit 467e32348f
2 changed files with 0 additions and 8 deletions

View File

@@ -102,7 +102,6 @@ private:
public: public:
GraphicAttr(); GraphicAttr();
~GraphicAttr();
bool operator==( const GraphicAttr& rAttr ) const; bool operator==( const GraphicAttr& rAttr ) const;
bool operator!=( const GraphicAttr& rAttr ) const { return !( *this == rAttr ); } bool operator!=( const GraphicAttr& rAttr ) const { return !( *this == rAttr ); }

View File

@@ -41,12 +41,6 @@ GraphicAttr::GraphicAttr() :
{ {
} }
GraphicAttr::~GraphicAttr()
{
}
bool GraphicAttr::operator==( const GraphicAttr& rAttr ) const bool GraphicAttr::operator==( const GraphicAttr& rAttr ) const
{ {
return( ( mfGamma == rAttr.mfGamma ) && return( ( mfGamma == rAttr.mfGamma ) &&
@@ -66,5 +60,4 @@ bool GraphicAttr::operator==( const GraphicAttr& rAttr ) const
( meDrawMode == rAttr.meDrawMode ) ); ( meDrawMode == rAttr.meDrawMode ) );
} }
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */