Skip to content

Commit c8a9a7f

Browse files
wgtmacHuaHuaY
andauthored
Update src/iceberg/expression/expression_visitor.h
Co-authored-by: Zehua Zou <[email protected]>
1 parent a743525 commit c8a9a7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/iceberg/expression/expression_visitor.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ namespace iceberg {
4545
/// \tparam R The return type produced by visitor methods
4646
template <typename R>
4747
class ICEBERG_EXPORT ExpressionVisitor {
48-
using ParamType = typename std::conditional_t<std::is_fundamental_v<R>, R, const R&>;
48+
using ParamType = std::conditional_t<std::is_fundamental_v<R>, R, const R&>;
4949

5050
public:
5151
virtual ~ExpressionVisitor() = default;

0 commit comments

Comments
 (0)