File tree Expand file tree Collapse file tree 1 file changed +0
-37
lines changed Expand file tree Collapse file tree 1 file changed +0
-37
lines changed Original file line number Diff line number Diff line change 34
34
#pragma once
35
35
36
36
#include < inttypes.h>
37
-
38
- // https://github.com/Arduino-CI/arduino_ci/issues/165
39
- #ifdef max
40
- #undef max
41
- #ifdef __cplusplus
42
- template <class T , class L >
43
- auto max (const T &a, const L &b) -> decltype((b < a) ? b : a) {
44
- return (a < b) ? b : a;
45
- }
46
- #else
47
- #define max (a, b ) \
48
- ({ \
49
- __typeof__ (a) _a = (a); \
50
- __typeof__ (b) _b = (b); \
51
- _a > _b ? _a : _b; \
52
- })
53
- #endif
54
- #endif
55
-
56
- #ifdef min
57
- #undef min
58
- #ifdef __cplusplus
59
- template <class T , class L >
60
- auto min (const T &a, const L &b) -> decltype((b > a) ? b : a) {
61
- return (a > b) ? b : a;
62
- }
63
- #else
64
- #define min (a, b ) \
65
- ({ \
66
- __typeof__ (a) _a = (a); \
67
- __typeof__ (b) _b = (b); \
68
- _a < _b ? _a : _b; \
69
- })
70
- #endif
71
- #endif
72
-
73
-
74
37
#include " Stream.h"
75
38
#include < cassert>
76
39
#include < deque>
You can’t perform that action at this time.
0 commit comments