Skip to content

Commit

Permalink
[BugFix][C++] Add implement of property<bool> (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasinliu authored Jan 24, 2024
1 parent 6a50e9e commit e8a304d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cpp/src/graph.cc
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ Result<StringArray> Edge::property(const std::string& property) const {
template Result<T> Vertex::property<T>(const std::string& name) const; \
template Result<T> Edge::property<T>(const std::string& name) const;

INSTANTIATE_PROPERTY(bool)
INSTANTIATE_PROPERTY(const bool&)
INSTANTIATE_PROPERTY(int32_t)
INSTANTIATE_PROPERTY(const int32_t&)
INSTANTIATE_PROPERTY(Int32Array)
Expand Down

0 comments on commit e8a304d

Please sign in to comment.