We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 095d428 commit b615c68Copy full SHA for b615c68
src/iceberg/expression/expression_visitor.h
@@ -262,10 +262,6 @@ class ICEBERG_EXPORT BoundVisitor : public ExpressionVisitor<R> {
262
/// \param expr The expression to traverse
263
/// \param visitor The visitor to use for traversal
264
/// \return The result produced by the visitor for the root expression node
265
-template <typename R, typename V>
266
- requires std::derived_from<V, ExpressionVisitor<R>>
267
-Result<R> Visit(const std::shared_ptr<Expression>& expr, V& visitor);
268
-
269
template <typename R, typename V>
270
requires std::derived_from<V, ExpressionVisitor<R>>
271
Result<R> Visit(const std::shared_ptr<Expression>& expr, V& visitor) {
0 commit comments