File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -275,7 +275,7 @@ ICEBERG_EXPORT inline constexpr Result<ManifestContent> ManifestContentFromStrin
275275
276276namespace std {
277277template <>
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 }
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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.
358358template <typename ScanTaskType>
359- class ICEBERG_EXPORT IncrementalScan : public TableScan {
359+ class IncrementalScan : public TableScan {
360360 public:
361361 ~IncrementalScan () override = default ;
362362
You can’t perform that action at this time.
0 commit comments