Skip to content

Commit dfb4504

Browse files
committed
Fix building error
1 parent 85654c2 commit dfb4504

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/iceberg/expression/predicate.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,8 @@ inline int32_t CountUTF8CodePoints(std::string_view str) {
164164
}
165165
}
166166
return code_point_count;
167+
}
168+
167169
bool IsNan(const Literal& literal) {
168170
const auto& value = literal.value();
169171
if (std::holds_alternative<float>(value)) {
@@ -182,8 +184,6 @@ bool StartsWith(const Literal& lhs, const Literal& rhs) {
182184
return std::get<std::string>(lhs_value).starts_with(std::get<std::string>(rhs_value));
183185
}
184186
return false;
185-
}
186-
187187
} // namespace
188188

189189
template <typename B>

0 commit comments

Comments
 (0)