Skip to content

Commit 6baebc3

Browse files
Merge pull request #1131 from Geode-solutions/fix/minimal-metric
fix(SmallSet): allow implicit conversion to Span
2 parents f71a519 + 6347317 commit 6baebc3

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

include/geode/basic/small_set.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,11 @@ namespace geode
120120
return !operator==( other );
121121
}
122122

123+
const Type* data() const
124+
{
125+
return container_.data();
126+
}
127+
123128
private:
124129
absl::InlinedVector< Type, capacity > container_;
125130
};

0 commit comments

Comments
 (0)