@ deadwood
I'm surprised so many programs use isnan.
Well okay, here's the output.
-------------------------------------------------------------------------------
1 > make
current values of user-set variables:
DESTDIR ?=
prefix ?= /usr/local
exec_prefix ?= /usr/local
OPTIMS ?= -march=native -mtune=native -Ofast
WARNINGS ?= -Wall -Wextra -pedantic
g++ PEngine/audio.cpp -> PEngine/audio.o
In file included from ./include/vmath.h:8:0,
from ./include/pengine.h:38,
from PEngine/audio.cpp:40:
/Development/lib/gcc/i386-aros/6.3.0/include/c++/math.h:66:12: error:
'constexpr bool std::isnan(double)' conflicts with a previous declaration
using std::isnan;
^~~~~
In file included from /Development/lib/gcc/i386-aros/6.3.0/include/c++/cmath:45:0,
from /Development/lib/gcc/i386-aros/6.3.0/include/c++/math.h:36,
from ./include/vmath.h:8,
from ./include/pengine.h:38,
from PEngine/audio.cpp:40:
/Development/include/aros/stdc/math.h:320:6: note: previous declaration
'int isnan(double)'
int (isnan)(double) __pure2;
^~~~~
make: *** [PEngine/audio.o] Error 1
-------------------------------------------------------------------------------
Also another request, gcc has much more output. I wonder if the shell buffer
could possibly be increased someday, to show more lines of text.
ps I've managed to compile my first c++11 program, yay