Skip to content

Commit

Permalink
fixed nullptr redefinition
Browse files Browse the repository at this point in the history
  • Loading branch information
Sébastien Dominguez authored and Sébastien Dominguez committed Jan 26, 2022
1 parent 80823d3 commit ff0964d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion cores/asr6601/base/Arduino.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@
#define bitClear(value, bit) ((value) &= ~(1UL << (bit)))
#define bit(b) (1 << (b))
#define _BV(b) (1UL << (b))
#define nullptr NULL

#define min(a, b) ((a)<(b)?(a):(b))
#define max(a, b) ((a)>(b)?(a):(b))
Expand Down

0 comments on commit ff0964d

Please # to comment.