We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ab0de7 commit d5be9c2Copy full SHA for d5be9c2
1 file changed
src/core/StelFader.hpp
@@ -139,6 +139,9 @@ class LinearFader : public StelFader
139
class ParabolicFader : public LinearFader
140
{
141
public:
142
+ // Bring LinearFader::operator= into scope
143
+ // which is hidden due to function name hiding rules
144
+ using LinearFader::operator=;
145
// Create and initialise to default
146
ParabolicFader(int _duration=1000, bool initialState=false)
147
: LinearFader(_duration, initialState)
0 commit comments