Skip to content

Commit e8a304d

Browse files
authored
[BugFix][C++] Add implement of property<bool> (#337)
1 parent 6a50e9e commit e8a304d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

cpp/src/graph.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,8 @@ Result<StringArray> Edge::property(const std::string& property) const {
197197
template Result<T> Vertex::property<T>(const std::string& name) const; \
198198
template Result<T> Edge::property<T>(const std::string& name) const;
199199

200+
INSTANTIATE_PROPERTY(bool)
201+
INSTANTIATE_PROPERTY(const bool&)
200202
INSTANTIATE_PROPERTY(int32_t)
201203
INSTANTIATE_PROPERTY(const int32_t&)
202204
INSTANTIATE_PROPERTY(Int32Array)

0 commit comments

Comments
 (0)