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
Given this code:
#include <utility> static int s1; static int s2; std::pair<int const&, int const&> fun() { return std::make_pair(s1, s2); }
The output is
#include <utility> static int s1; static int s2; std::pair<const int &, const int &> fun() { return std::pair<const int &, const int &>(std::make_pair(s1, s2)); }
But I expected to see:
#include <utility> static int s1; static int s2; std::pair<const int &, const int &> fun() { return std::pair<const int &, const int &>(std::make_pair<int, int>(s1, s2)); }
The text was updated successfully, but these errors were encountered:
Hello @leg0,
thanks for spotting and reporting this issue! I will look into it. I assume that the CallExpr does not consider the template arguments.
CallExpr
Andreas
Sorry, something went wrong.
7cca2c1
Merge pull request #572 from andreasfertig/fixIssue501
f090032
Fixed #501: Added a dedicated option to show all `CallExpr` template parameters.
No branches or pull requests
Given this code:
The output is
But I expected to see:
The text was updated successfully, but these errors were encountered: