Fix a warning in clutstore.h

This commit is contained in:
Hombre
2014-08-25 00:15:19 +02:00
parent f950d924b1
commit 42eb71665e

View File

@@ -84,7 +84,7 @@ public:
void set( CLUT *p ) { m_point = p; }
private:
ClutPtr& operator=(ClutPtr const& cp ) {} // ... a return value is expected here
ClutPtr& operator=(ClutPtr const& cp ) { /*only for clean warning messages*/return *this; }
CLUT *m_point;
};