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 8baa5bf commit e83cc89Copy full SHA for e83cc89
flang/lib/Parser/openmp-parsers.cpp
@@ -71,7 +71,7 @@ template <typename ExecParser> struct AsBlockParser {
71
if (auto &&exec{attempt(epc_).Parse(state)}) {
72
Block body;
73
body.push_back(std::move(*exec));
74
- return body;
+ return std::move(body); // std::move for GCC 7.5.0
75
}
76
return std::nullopt;
77
0 commit comments