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
As of now the project cannot be compiled because the standard library isn't imported.
For that to be fixed, Headers/Global.hpp should be changed to this:
Headers/Global.hpp
#include <cmath> #include <algorithm> ... the rest of the code
The text was updated successfully, but these errors were encountered:
I get this on Windows 10x64 Visual Studio Error C2039 : 'clamp': is not a member of 'std'
Error C2039 : 'clamp': is not a member of 'std'
Sorry, something went wrong.
Have you applied the solution?
I applied it but same error. So finally found out that clamp support is only from c++17. I was using c++14. Fixed! Thanks
No branches or pull requests
As of now the project cannot be compiled because the standard library isn't imported.
For that to be fixed,
Headers/Global.hpp
should be changed to this:The text was updated successfully, but these errors were encountered: