Skip to content

Commit 5c41a78

Browse files
committed
fix compile issue
1 parent 8910bf0 commit 5c41a78

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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.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)