Skip to content

Commit 123a6d8

Browse files
authored
Merge pull request #4 from alibuild/alibot-cleanup-13498
Please consider the following formatting changes to AliceO2Group#13498
2 parents bd1ebfa + 2c918a8 commit 123a6d8

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • Framework/Core/include/Framework

Framework/Core/include/Framework/ASoA.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2021,7 +2021,7 @@ ColumnGetterFunction<R, T> createGetterPtr(const std::string_view& columnLabel)
20212021
{
20222022
const size_t n = columnLabel.size();
20232023

2024-
if(n == 0 || n != strlen(C::columnLabel())) {
2024+
if (n == 0 || n != strlen(C::columnLabel())) {
20252025
return nullptr;
20262026
}
20272027

@@ -2033,11 +2033,11 @@ ColumnGetterFunction<R, T> createGetterPtr(const std::string_view& columnLabel)
20332033
{
20342034
const size_t n = columnLabel.size();
20352035

2036-
if(n == 0 || n != strlen(C::columnLabel())) {
2036+
if (n == 0 || n != strlen(C::columnLabel())) {
20372037
return nullptr;
20382038
}
20392039

2040-
return ((std::strncmp(&columnLabel[1], C::columnLabel(), n-1) && std::strncmp(columnLabel.data(), C::columnLabel(), n))) ? nullptr : &getColumnValue<R, T, C>;
2040+
return ((std::strncmp(&columnLabel[1], C::columnLabel(), n - 1) && std::strncmp(columnLabel.data(), C::columnLabel(), n))) ? nullptr : &getColumnValue<R, T, C>;
20412041
}
20422042

20432043
template <typename R, typename T, typename... Cs>

0 commit comments

Comments
 (0)