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 072ccf1 commit b9f6aacCopy full SHA for b9f6aac
Framework/Core/include/Framework/DataSpecViews.h
@@ -58,7 +58,7 @@ struct update_input_list {
58
template <std::ranges::input_range R>
59
friend Container& operator|(R&& r, update_input_list self)
60
{
61
- for (auto& item : r) {
+ for (auto const& item : r) {
62
auto copy = item;
63
DataSpecUtils::updateInputList(self.c, std::move(copy));
64
}
@@ -73,7 +73,7 @@ struct update_output_list {
73
74
friend Container& operator|(R&& r, update_output_list self)
75
76
77
78
DataSpecUtils::updateOutputList(self.c, std::move(copy));
79
0 commit comments