From b0b83625c18e45055fbd21297c1ede4d94de9c59 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Sat, 6 Sep 2014 12:37:57 +0200 Subject: [PATCH] Printable.h doesn't need new.h but only stdlib.h for size_t. Probalby new.h may be removed completely. --- hardware/arduino/avr/cores/arduino/Printable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hardware/arduino/avr/cores/arduino/Printable.h b/hardware/arduino/avr/cores/arduino/Printable.h index d03c9af62..2a1b2e9f2 100644 --- a/hardware/arduino/avr/cores/arduino/Printable.h +++ b/hardware/arduino/avr/cores/arduino/Printable.h @@ -20,7 +20,7 @@ #ifndef Printable_h #define Printable_h -#include +#include class Print;