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
Hello, the following code snippet doesn't compile on MSVC (2022), but works fine with clang and gcc:
struct TestStruct{ std::string teststringfield = std::string{nameof::nameof_member<&TestStruct::teststringfield>()}; }; auto test = TestStruct{}; REQUIRE(test.teststringfield == "teststringfield");
The text was updated successfully, but these errors were encountered:
Hi.
The problem is that MSVC cannot find the destructor of the inside used union. This can be fixed easily. test
I create a PR.
Sorry, something went wrong.
Fix Neargye#46
c51addb
f7b2f34
No branches or pull requests
Hello, the following code snippet doesn't compile on MSVC (2022), but works fine with clang and gcc:
The text was updated successfully, but these errors were encountered: