Reputeless / PerlinNoise

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

is_arithmetic_v not a member of 'std' #8

Closed patrikpatrik closed 3 years ago

patrikpatrik commented 3 years ago

Sorry if this has been listed before but I'm getting an error: 'is_arithmetic_v' is not a member of 'std' using CodeBlocks 20.03 Windows 10 x64.

Reputeless commented 3 years ago

std::is_arithmetic_v is a C++17 feature. Make sure your compiler supports it and compile with C++17 flag.