Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/iceberg/expression/projections.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class ICEBERG_EXPORT ProjectionEvaluator {
Result<std::shared_ptr<Expression>> Project(const std::shared_ptr<Expression>& expr);

private:
friend class Projections;
friend struct Projections;

/// \brief Create a ProjectionEvaluator.
///
Expand Down
2 changes: 1 addition & 1 deletion src/iceberg/table_metadata.h
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ class ICEBERG_EXPORT TableMetadataBuilder : public ErrorCollector {
explicit TableMetadataBuilder(const TableMetadata* base);

/// Internal state members
struct Impl;
class Impl;
std::unique_ptr<Impl> impl_;
};

Expand Down
Loading