We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8634552 commit 067c56aCopy full SHA for 067c56a
src/dataframe/interface.h
@@ -96,16 +96,14 @@ class dataframe_interface :
96
const dataframe_interface *parent;
97
record_identifier recordId;
98
99
- auto operator<=>(const record_type &other) const = default;
100
-
101
auto get_dimensions() const
102
{
103
return std::ranges::transform_view{
104
parent->get_dimensions(),
105
- [this](std::string_view dim)
+ [rec = *this](std::string_view dim)
106
-> std::pair<std::string_view, std::string_view>
107
108
- auto &&cell = getValue(dim);
+ auto &&cell = rec.getValue(dim);
109
return {dim,
110
*std::get_if<std::string_view>(&cell)};
111
}};
0 commit comments