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
When building the project using cmake I get the following error when I try to compile the project using Visual Studio 2019
C:\repo\EAStdC\test\packages\EAMain\source\EAMain.cpp(175,64): error C2665: "EA::StdC::Strlen": Couldn't find fitting function signature [C:\repo\EAStdC\out\test\packages\EAMain\EAMain.vcxproj]
The reason is that by default cmake builds using the latest C++ version (std:c++latest). VS2019 broke some compatibility with char* types. https://docs.microsoft.com/en-us/cpp/overview/cpp-conformance-improvements?view=vs-2019&WT.mc_id=twitter#improvements_161
To fix this error you must supply overloads of all string operations for char8_t or change the build script to use C++17 by default.
Greetings.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When building the project using cmake I get the following error when I try to compile the project using Visual Studio 2019
The reason is that by default cmake builds using the latest C++ version (std:c++latest).
VS2019 broke some compatibility with char* types. https://docs.microsoft.com/en-us/cpp/overview/cpp-conformance-improvements?view=vs-2019&WT.mc_id=twitter#improvements_161
To fix this error you must supply overloads of all string operations for char8_t or change the build script to use C++17 by default.
Greetings.
The text was updated successfully, but these errors were encountered: