Reputeless / PerlinNoise

Header-only Perlin noise library for modern C++ (C++17/C++20)
MIT License
673 stars 77 forks source link

compiling errors #13

Closed Vxerz closed 3 months ago

Vxerz commented 3 months ago

image I just included the hpp file and didn't do anything else and I'm getting this long list of errors, I'm assuming I'm missing something but I don't know what

Reputeless commented 3 months ago

The errors you are encountering are due to the use of Visual Studio in its default C++14 mode. My library requires features that are available in C++17. Please change your project settings to use the C++17 standard. This should resolve the issues you are experiencing.