Skip to content

Commit a21def9

Browse files
committed
fixup! fix for produces
1 parent e954022 commit a21def9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Framework/Core/include/Framework/AnalysisHelpers.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

Framework/Core/include/Framework/TableBuilder.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ struct BuilderUtils {
224224

225225
template <typename T>
226226
struct 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;

0 commit comments

Comments
 (0)