Reputeless / PerlinNoise

Header-only Perlin noise library for modern C++ (C++17/C++20)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

is_arithmetic_v not a member of 'std'

patrikpatrik opened this issue · comments

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.

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