From 7ad89e58cd53a874a4352ee9f11b3ac1f069e957 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Tue, 10 May 2016 21:39:02 +0800 Subject: [PATCH] Use isnan and isinf from std:: --- cores/esp8266/Arduino.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cores/esp8266/Arduino.h b/cores/esp8266/Arduino.h index 12286db86..0264aeac0 100644 --- a/cores/esp8266/Arduino.h +++ b/cores/esp8266/Arduino.h @@ -249,6 +249,8 @@ void optimistic_yield(uint32_t interval_us); using std::min; using std::max; +using std::isinf; +using std::isnan; #define _min(a,b) ((a)<(b)?(a):(b)) #define _max(a,b) ((a)>(b)?(a):(b))