Merge pull request #5013 from Thanatomanic/pedanticfixes
Some minor pedantic fixes
This commit is contained in:
commit
09b65bcc92
@ -39,5 +39,5 @@ wavelet_decomposition::~wavelet_decomposition()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
}
|
||||||
|
|
||||||
|
@ -266,6 +266,6 @@ void wavelet_decomposition::reconstruct(E * dst, const float blend)
|
|||||||
coeff0 = nullptr;
|
coeff0 = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -50,5 +50,5 @@ const float Daub4_anal16[2][16] ALIGNED16 = {//Daub 14
|
|||||||
};
|
};
|
||||||
|
|
||||||
// if necessary ?? we can add D20 !!
|
// if necessary ?? we can add D20 !!
|
||||||
};
|
}
|
||||||
|
|
||||||
|
@ -758,6 +758,6 @@ template<typename T> template<typename E> void wavelet_level<T>::reconstruct_lev
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
};
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -1025,7 +1025,7 @@ void ColorAppearance::Set(const Curve &pCurve)
|
|||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
RetinextransmissionCurve::RetinextransmissionCurve() {};
|
RetinextransmissionCurve::RetinextransmissionCurve() {}
|
||||||
|
|
||||||
void RetinextransmissionCurve::Reset()
|
void RetinextransmissionCurve::Reset()
|
||||||
{
|
{
|
||||||
@ -1058,7 +1058,7 @@ void RetinextransmissionCurve::Set(const std::vector<double> &curvePoints)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
RetinexgaintransmissionCurve::RetinexgaintransmissionCurve() {};
|
RetinexgaintransmissionCurve::RetinexgaintransmissionCurve() {}
|
||||||
|
|
||||||
void RetinexgaintransmissionCurve::Reset()
|
void RetinexgaintransmissionCurve::Reset()
|
||||||
{
|
{
|
||||||
@ -1168,7 +1168,7 @@ void OpacityCurve::Set(const std::vector<double> &curvePoints, bool &opautili)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
WavCurve::WavCurve() : sum(0.f) {};
|
WavCurve::WavCurve() : sum(0.f) {}
|
||||||
|
|
||||||
void WavCurve::Reset()
|
void WavCurve::Reset()
|
||||||
{
|
{
|
||||||
@ -1211,7 +1211,7 @@ void WavCurve::Set(const std::vector<double> &curvePoints)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
WavOpacityCurveRG::WavOpacityCurveRG() {};
|
WavOpacityCurveRG::WavOpacityCurveRG() {}
|
||||||
|
|
||||||
void WavOpacityCurveRG::Reset()
|
void WavOpacityCurveRG::Reset()
|
||||||
{
|
{
|
||||||
@ -1244,7 +1244,7 @@ void WavOpacityCurveRG::Set(const std::vector<double> &curvePoints)
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
WavOpacityCurveBY::WavOpacityCurveBY() {};
|
WavOpacityCurveBY::WavOpacityCurveBY() {}
|
||||||
|
|
||||||
void WavOpacityCurveBY::Reset()
|
void WavOpacityCurveBY::Reset()
|
||||||
{
|
{
|
||||||
@ -1276,7 +1276,7 @@ void WavOpacityCurveBY::Set(const std::vector<double> &curvePoints)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
WavOpacityCurveW::WavOpacityCurveW() {};
|
WavOpacityCurveW::WavOpacityCurveW() {}
|
||||||
|
|
||||||
void WavOpacityCurveW::Reset()
|
void WavOpacityCurveW::Reset()
|
||||||
{
|
{
|
||||||
@ -1308,7 +1308,7 @@ void WavOpacityCurveW::Set(const std::vector<double> &curvePoints)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
WavOpacityCurveWL::WavOpacityCurveWL() {};
|
WavOpacityCurveWL::WavOpacityCurveWL() {}
|
||||||
|
|
||||||
void WavOpacityCurveWL::Reset()
|
void WavOpacityCurveWL::Reset()
|
||||||
{
|
{
|
||||||
@ -1341,7 +1341,7 @@ void WavOpacityCurveWL::Set(const std::vector<double> &curvePoints)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
NoiseCurve::NoiseCurve() : sum(0.f) {};
|
NoiseCurve::NoiseCurve() : sum(0.f) {}
|
||||||
|
|
||||||
void NoiseCurve::Reset()
|
void NoiseCurve::Reset()
|
||||||
{
|
{
|
||||||
|
@ -101,6 +101,6 @@ void LabImage::deleteLab()
|
|||||||
void LabImage::reallocLab()
|
void LabImage::reallocLab()
|
||||||
{
|
{
|
||||||
allocLab(W, H);
|
allocLab(W, H);
|
||||||
};
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -156,7 +156,7 @@ public:
|
|||||||
}
|
}
|
||||||
|
|
||||||
return imgPtr;
|
return imgPtr;
|
||||||
};
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user