#5101 clang-format: Allow short functions on a single line

Use AllowShortFunctionsOnASingleLine: InlineOnly
This commit is contained in:
Magne Sjaastad
2020-02-12 11:13:38 +01:00
parent ab9d46ee75
commit 10f0abc9b5
428 changed files with 1519 additions and 1990 deletions

View File

@@ -38,44 +38,17 @@ class RimEnsembleStatistics : public caf::PdmObject
public:
RimEnsembleStatistics();
bool isActive() const;
bool hideEnsembleCurves() const
{
return m_hideEnsembleCurves;
}
bool basedOnFilteredCases() const
{
return m_basedOnFilteredCases;
}
bool showP10Curve() const
{
return m_showP10Curve;
}
bool showP50Curve() const
{
return m_showP50Curve;
}
bool showP90Curve() const
{
return m_showP90Curve;
}
bool showMeanCurve() const
{
return m_showMeanCurve;
}
bool showCurveLabels() const
{
return m_showCurveLabels;
}
cvf::Color3f color() const
{
return m_color;
}
bool isActive() const;
bool hideEnsembleCurves() const { return m_hideEnsembleCurves; }
bool basedOnFilteredCases() const { return m_basedOnFilteredCases; }
bool showP10Curve() const { return m_showP10Curve; }
bool showP50Curve() const { return m_showP50Curve; }
bool showP90Curve() const { return m_showP90Curve; }
bool showMeanCurve() const { return m_showMeanCurve; }
bool showCurveLabels() const { return m_showCurveLabels; }
cvf::Color3f color() const { return m_color; }
bool includeIncompleteCurves() const
{
return m_includeIncompleteCurves;
}
bool includeIncompleteCurves() const { return m_includeIncompleteCurves; }
void disableP10Curve( bool disable );
void disableP50Curve( bool disable );