From 42eb71665e369137f4893bf2a341d2b724768d2d Mon Sep 17 00:00:00 2001 From: Hombre Date: Mon, 25 Aug 2014 00:15:19 +0200 Subject: [PATCH] Fix a warning in clutstore.h --- rtengine/clutstore.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rtengine/clutstore.h b/rtengine/clutstore.h index 3fc08b582..ff62df2cb 100644 --- a/rtengine/clutstore.h +++ b/rtengine/clutstore.h @@ -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; };