Skip to content
Snippets Groups Projects
Commit 2fbfe2ed authored by Julien Michel's avatar Julien Michel
Browse files

COMP: (Visu Refactoring) Fixing a compilation warning

parent 678ac93d
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,12 @@ public:
protected:
/** Constructor */
RGBRenderingFunction() : m_RedChannelIndex(0), m_BlueChannelIndex(1), m_GreenChannelIndex(2) {}
RGBRenderingFunction()
{
m_RedChannelIndex = 0;
m_BlueChannelIndex = 1;
m_GreenChannelIndex = 2;
}
/** Destructor */
~RGBRenderingFunction() {}
/** Perform the computation for a single value (this is done in
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment