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
I try to compile it in MSVC but I met a compile error:
prism/geogram/AABB.hpp(23): error C2039: 'optional': is not a member of 'std'
However, if I set c++17 in the CMakeList.txt line 4, the geogram will report an error:
error C2039: 'set_unexpected': is not a member of 'std'
It seems that set_unexpected had been deprecated in c++17
set_unexpected
The text was updated successfully, but these errors were encountered:
Hi,
What version of VS are you using? Can you try VS2020?
Sorry, something went wrong.
I'm using VS2019. I'll try VS2020 later but now I just write code in ubuntu. Sorry...I haven't had time to try VS2020 recently
Glad to know that you managed to work in Ubuntu. I do most of my development in Ubuntu and the windows support is not very comprehensive.
If you have any questions about our method, let me know.
No branches or pull requests
I try to compile it in MSVC but I met a compile error:
However, if I set c++17 in the CMakeList.txt line 4, the geogram will report an error:
It seems that
set_unexpected
had been deprecated in c++17The text was updated successfully, but these errors were encountered: