Skip to content

Commit d1bacdf

Browse files
committed
fix compile issue
1 parent 8910bf0 commit d1bacdf

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/iceberg/manifest/manifest_list.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ ICEBERG_EXPORT inline constexpr Result<ManifestContent> ManifestContentFromStrin
275275

276276
namespace std {
277277
template <>
278-
struct std::hash<iceberg::ManifestFile> {
278+
struct hash<iceberg::ManifestFile> {
279279
size_t operator()(const iceberg::ManifestFile& manifest_file) const {
280280
return std::hash<std::string>{}(manifest_file.manifest_path);
281281
}

src/iceberg/table_scan.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -753,7 +753,7 @@ IncrementalScan<ScanTaskType>::PlanFiles() const {
753753
}
754754

755755
// Explicitly instantiate the templates
756-
template class IncrementalScan<FileScanTask>;
757-
template class IncrementalScan<ChangelogScanTask>;
756+
template class ICEBERG_EXPORT IncrementalScan<FileScanTask>;
757+
template class ICEBERG_EXPORT IncrementalScan<ChangelogScanTask>;
758758

759759
} // namespace iceberg

src/iceberg/table_scan.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ class ICEBERG_EXPORT DataTableScan : public TableScan {
356356
/// \brief A base template class for incremental scans that read changes between
357357
/// snapshots, and return scan tasks of the specified type.
358358
template <typename ScanTaskType>
359-
class ICEBERG_EXPORT IncrementalScan : public TableScan {
359+
class IncrementalScan : public TableScan {
360360
public:
361361
~IncrementalScan() override = default;
362362

0 commit comments

Comments
 (0)