coverity#1371198 Missing move assignment operator
Change-Id: I89a718a245ea36f33c47f8044280bf7e46c0f66a
This commit is contained in:
@@ -102,7 +102,6 @@ private:
|
||||
public:
|
||||
|
||||
GraphicAttr();
|
||||
~GraphicAttr();
|
||||
|
||||
bool operator==( const GraphicAttr& rAttr ) const;
|
||||
bool operator!=( const GraphicAttr& rAttr ) const { return !( *this == rAttr ); }
|
||||
|
@@ -41,12 +41,6 @@ GraphicAttr::GraphicAttr() :
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
GraphicAttr::~GraphicAttr()
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
bool GraphicAttr::operator==( const GraphicAttr& rAttr ) const
|
||||
{
|
||||
return( ( mfGamma == rAttr.mfGamma ) &&
|
||||
@@ -66,5 +60,4 @@ bool GraphicAttr::operator==( const GraphicAttr& rAttr ) const
|
||||
( meDrawMode == rAttr.meDrawMode ) );
|
||||
}
|
||||
|
||||
|
||||
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|
||||
|
Reference in New Issue
Block a user