Skip to content

Commit 9c4df8e

Browse files
committed
formatting
1 parent 1546f60 commit 9c4df8e

File tree

1 file changed

+2
-2
lines changed
  • Framework/Core/include/Framework

1 file changed

+2
-2
lines changed

Framework/Core/include/Framework/ASoA.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2024,12 +2024,12 @@ ColumnGetterFunction<R, T> createGetterPtr(const std::string_view& columnLabel)
20242024
{
20252025
// allows user to use consistent formatting (with prefix) of all column labels
20262026
// by default there isn't 'f' prefix for dynamic column labels
2027-
if(columnLabel.size() > 1 && columnLabel.substr(1) == C::columnLabel()) {
2027+
if (columnLabel.size() > 1 && columnLabel.substr(1) == C::columnLabel()) {
20282028
return &getColumnValue<R, T, C>;
20292029
}
20302030

20312031
// check also exact match if user is aware of prefix missing
2032-
if(columnLabel == C::columnLabel()) {
2032+
if (columnLabel == C::columnLabel()) {
20332033
return &getColumnValue<R, T, C>;
20342034
}
20352035

0 commit comments

Comments
 (0)