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 c1e1221 commit cac6b55Copy full SHA for cac6b55
1 file changed
phlex/model/fixed_hierarchy.cpp
@@ -49,7 +49,7 @@ namespace {
49
for (auto&& lp : std::move(layer_paths)) {
50
auto lp_as_ids =
51
lp | std::views::as_rvalue |
52
- std::views::transform([](auto&& str) { return identifier(std::move(str)); }) |
+ std::views::transform([](std::string&& str) { return identifier(std::move(str)); }) |
53
std::ranges::to<std::vector>();
54
result.emplace_back(std::move(lp_as_ids));
55
}
0 commit comments