Skip to content

Commit 8b375e0

Browse files
committed
Use isnan and isinf from std::
1 parent a3bf316 commit 8b375e0

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cores/esp8266/Arduino.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,8 @@ void optimistic_yield(uint32_t interval_us);
250250

251251
using std::min;
252252
using std::max;
253+
using std::isinf;
254+
using std::isnan;
253255

254256
#define _min(a,b) ((a)<(b)?(a):(b))
255257
#define _max(a,b) ((a)>(b)?(a):(b))

0 commit comments

Comments
 (0)