Skip to content

Commit 5800fce

Browse files
Apply suggestions from code review
Fixed styling Co-Authored-By: db-dropDatabase <noah@koontzs.com>
1 parent 7402c91 commit 5800fce

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

cores/arduino/Arduino.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,8 @@ void loop( void ) ;
104104
#define abs(x) ((x)>0?(x):-(x))
105105
#define round(x) ((x)>=0?(long)((x)+0.5):(long)((x)-0.5))
106106
#else
107-
using std::min;
108-
using std::max;
109-
107+
using std::min;
108+
using std::max;
110109
#endif
111110

112111
#define constrain(amt,low,high) ((amt)<(low)?(low):((amt)>(high)?(high):(amt)))

0 commit comments

Comments
 (0)