Skip to content

Commit 4804ccd

Browse files
committed
fix ci
1 parent dbc3ceb commit 4804ccd

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/iceberg/util/type_util.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ namespace iceberg {
3737
/// - All field IDs must be unique across the entire schema hierarchy
3838
/// If the struct is part of a Schema, these invariants are enforced by
3939
/// StructType::InitFieldById which checks for duplicate field IDs.
40-
ICEBERG_EXPORT static std::unordered_map<int32_t, int32_t> indexParents(
41-
const StructType& root_struct) {
40+
static std::unordered_map<int32_t, int32_t> indexParents(const StructType& root_struct) {
4241
std::unordered_map<int32_t, int32_t> id_to_parent;
4342
std::stack<int32_t> parent_id_stack;
4443

0 commit comments

Comments
 (0)