We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#include <tuple> std::tuple<int, float> foo(); auto [a, b] = foo();
transform into invalid syntax
#include <tuple> std::tuple<int, float> foo(); std::tuple<int, float> __foo5 = foo(); std::tuple_element<0, std::tuple<int, float> >::type& a = std::get<0ul>(__foo5); std::tuple_element<0, std::tuple<float> >::type& b = std::get<std::tuple_element<0, std::tuple<int, float> >::type && a = std::get<0ul>(); ulstd::tuple_element<0, std::tuple<float> >::type && b = std::get<1ul>(); (__foo5);
The text was updated successfully, but these errors were encountered:
Hello @shebdim,
thanks for reporting that! You found a special case with the function call and the global decomposition. A fix is on its way.
Andreas
Sorry, something went wrong.
4783d94
Merge pull request #132 from andreasfertig/fixIssue131
35d47d2
Fixed #131: Global DecompositionDecl transformation was wrong.
No branches or pull requests
transform into invalid syntax
The text was updated successfully, but these errors were encountered: