Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
421 views
in Technique[技术] by (71.8m points)

c++ - How to solve "'isnan' was not declared in this scope" without upgrading GCC?

I am using GCC 5.4 and getting 'isnan' was not declared in this scope error. I found <cmath> hides isnan in <math.h> in C++14 / C++11?.

but I have to keep the GCC version, without modifying the source which uses isnan, and C++14 standard. so I want to know any trick to solve it.

for example: define isnan=std::isnan as compile -D argument?

question from:https://stackoverflow.com/questions/66059029/how-to-solve-isnan-was-not-declared-in-this-scope-without-upgrading-gcc

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...