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
win11, msvc2022
expected:
EXPECT_EQ(type_string<int>(), "int"); EXPECT_EQ(type_string<int&>(), "int&"); EXPECT_EQ(type_string<int&&>(), "int&&"); EXPECT_EQ(type_string<const int>(), "const int"); EXPECT_EQ(type_string<const int&>(), "const int&"); EXPECT_EQ(type_string<const int&&>(), "const int&&");
what happend: lose const
const
type_string<int>() == "int" type_string<int&>() == "int&" type_string<int&&>() == "int&&" type_string<const int>() == "int" type_string<const int&>() == "int&" type_string<const int&&>() == "int&&"
The text was updated successfully, but these errors were encountered:
Thanks for your report. I think it's a bug, welcome to contribute a PR.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Search before asking
What happened + What you expected to happen
win11, msvc2022
expected:
what happend:
lose
const
Reproduction way
Anything else
Are you willing to submit a PR?
The text was updated successfully, but these errors were encountered: