Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions Framework/Core/include/Framework/Expressions.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,12 @@ constexpr auto selectArrowType()
}

#define SELECT_ARROW_TYPE(_Ctype_, _Atype_) \
template <typename T> \
requires std::same_as<T, _Ctype_> \
constexpr auto selectArrowType() \
{ \
return atype::_Atype_; \
}
template <typename T> \
requires std::same_as<T, _Ctype_> \
constexpr auto selectArrowType() \
{ \
return atype::_Atype_; \
}

SELECT_ARROW_TYPE(bool, BOOL);
SELECT_ARROW_TYPE(float, FLOAT);
Expand Down
Loading