File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Framework/Core/include/Framework Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -171,14 +171,14 @@ struct WritingCursor {
171171
172172 private:
173173 template <is_enumerated_iterator A>
174- static decltype (auto ) extract(A const & arg)
174+ static inline decltype (auto ) extract(A const & arg)
175175 {
176176 return arg.globalIndex ();
177177 }
178178
179179 template <typename A>
180180 requires (!is_enumerated_iterator<A>)
181- static decltype (auto ) extract(A&& arg)
181+ static inline decltype (auto ) extract(A&& arg)
182182 {
183183 return arg;
184184 }
Original file line number Diff line number Diff line change @@ -224,7 +224,7 @@ struct BuilderUtils {
224224
225225template <typename T>
226226struct BuilderMaker {
227- using FillType = T const & ;
227+ using FillType = T;
228228 using STLValueType = T;
229229 using ArrowType = typename detail::ConversionTraits<T>::ArrowType;
230230 using BuilderType = typename arrow::TypeTraits<ArrowType>::BuilderType;
You can’t perform that action at this time.
0 commit comments