We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa98b1b commit 491a12bCopy full SHA for 491a12b
cores/esp32/Arduino.h
@@ -73,7 +73,6 @@
73
#endif
74
75
// can't define max() / min() because of conflicts with C++
76
-#define _min(a, b) ((a) < (b) ? (a) : (b))
77
#define _max(a, b) ((a) > (b) ? (a) : (b))
78
#define _abs(x) ((x) > 0 ? (x) : -(x)) // abs() comes from STL
79
#define constrain(amt, low, high) ((amt) < (low) ? (low) : ((amt) > (high) ? (high) : (amt)))
0 commit comments