Skip to content

Commit

Permalink
Merge pull request #1304 from kuzudb/fix-arch-build
Browse files Browse the repository at this point in the history
Fix build issue on Arch Linux
  • Loading branch information
mewim committed Feb 21, 2023
2 parents 25224b8 + bcae7d8 commit 07f3b74
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/include/catalog/catalog_structs.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once

#include <algorithm>
#include <unordered_map>
#include <unordered_set>

Expand Down Expand Up @@ -84,7 +85,7 @@ struct TableSchema {
}

inline bool containProperty(std::string propertyName) const {
return any_of(properties.begin(), properties.end(),
return std::any_of(properties.begin(), properties.end(),
[&propertyName](const Property& property) { return property.name == propertyName; });
}

Expand Down

0 comments on commit 07f3b74

Please sign in to comment.