Skip to content

Commit e6a3655

Browse files
committed
wrap internal symbols with anonymous namespace
1 parent 3552bce commit e6a3655

File tree

1 file changed

+3
-0
lines changed
  • Framework/Core/include/Framework

1 file changed

+3
-0
lines changed

Framework/Core/include/Framework/ASoA.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2175,6 +2175,8 @@ std::tuple<typename Cs::type...> getRowData(arrow::Table* table, T rowIterator,
21752175
return std::make_tuple(getSingleRowData<T, Cs>(table, rowIterator, ci, ai, globalIndex)...);
21762176
}
21772177

2178+
namespace
2179+
{
21782180
template <typename R, typename T, typename C>
21792181
R getColumnValue(const T& rowIterator)
21802182
{
@@ -2238,6 +2240,7 @@ ColumnGetterFunction<R, T> getColumnGetterByLabel(o2::framework::pack<Cs...>, co
22382240

22392241
template <typename T, typename R>
22402242
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;
2243+
} // namespace
22412244

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

0 commit comments

Comments
 (0)