Skip to content

Commit

Permalink
Wrap internal symbols with anonymous namespace (#13796)
Browse files Browse the repository at this point in the history
  • Loading branch information
mytkom authored Dec 12, 2024
1 parent f4d9b9c commit 07a0339
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Framework/Core/include/Framework/ASoA.h
Original file line number Diff line number Diff line change
Expand Up @@ -2175,6 +2175,8 @@ std::tuple<typename Cs::type...> getRowData(arrow::Table* table, T rowIterator,
return std::make_tuple(getSingleRowData<T, Cs>(table, rowIterator, ci, ai, globalIndex)...);
}

namespace
{
template <typename R, typename T, typename C>
R getColumnValue(const T& rowIterator)
{
Expand Down Expand Up @@ -2238,6 +2240,7 @@ ColumnGetterFunction<R, T> getColumnGetterByLabel(o2::framework::pack<Cs...>, co

template <typename T, typename R>
using with_common_getter_t = typename std::conditional<persistent_with_common_getter<T, R> || dynamic_with_common_getter<T, R>, std::true_type, std::false_type>::type;
} // namespace

template <typename R, typename T>
ColumnGetterFunction<R, typename T::iterator> getColumnGetterByLabel(const std::string_view& targetColumnLabel)
Expand Down

0 comments on commit 07a0339

Please sign in to comment.