Skip to content

Commit dcfa0bf

Browse files
committed
Fix linting
Signed-off-by: Dom Del Nano <ddelnano@gmail.com>
1 parent b9cccf7 commit dcfa0bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/carnot/udf/udtf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ class UDTFTraits {
231231
static constexpr bool HasCorrectOutputRelationFnSignature() {
232232
return HasOutputRelationFn() &&
233233
CorrectOutputRelationTypeHelper<
234-
std::invoke_result_t<decltype (&TUDTF::OutputRelation)>>::value;
234+
std::invoke_result_t<decltype(&TUDTF::OutputRelation)>>::value;
235235
}
236236

237237
/**
@@ -244,7 +244,7 @@ class UDTFTraits {
244244
* @return
245245
*/
246246
static constexpr bool HasCorrectExectorFnReturnType() {
247-
return HasExecutorFn() && std::is_same_v<std::invoke_result_t<decltype (&TUDTF::Executor)>,
247+
return HasExecutorFn() && std::is_same_v<std::invoke_result_t<decltype(&TUDTF::Executor)>,
248248
udfspb::UDTFSourceExecutor>;
249249
}
250250

0 commit comments

Comments
 (0)