Skip to content

Commit b0b8362

Browse files
committed
Printable.h doesn't need new.h but only stdlib.h for size_t.
Probalby new.h may be removed completely.
1 parent 07e3e83 commit b0b8362

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hardware/arduino/avr/cores/arduino/Printable.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#ifndef Printable_h
2121
#define Printable_h
2222

23-
#include <new.h>
23+
#include <stdlib.h>
2424

2525
class Print;
2626

0 commit comments

Comments
 (0)