mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#5101 clang-format: Allow short functions on a single line
Use AllowShortFunctionsOnASingleLine: InlineOnly
This commit is contained in:
@@ -103,25 +103,13 @@ public:
|
||||
}
|
||||
}
|
||||
|
||||
std::string origin() const
|
||||
{
|
||||
return m_origin;
|
||||
}
|
||||
std::string origin() const { return m_origin; }
|
||||
|
||||
std::string startDate() const
|
||||
{
|
||||
return m_startDate;
|
||||
}
|
||||
std::string startDate() const { return m_startDate; }
|
||||
|
||||
std::vector<Column>& columnInfos()
|
||||
{
|
||||
return m_columnInfos;
|
||||
}
|
||||
std::vector<Column>& columnInfos() { return m_columnInfos; }
|
||||
|
||||
const std::vector<Column>& columnInfos() const
|
||||
{
|
||||
return m_columnInfos;
|
||||
}
|
||||
const std::vector<Column>& columnInfos() const { return m_columnInfos; }
|
||||
|
||||
int dateTimeColumnIndex() const;
|
||||
QDateTime findFirstDate() const;
|
||||
|
||||
Reference in New Issue
Block a user