1
0
mirror of https://github.com/arduino/Arduino.git synced 2024-12-01 12:24:14 +01:00

Printable.h doesn't need new.h but only stdlib.h for size_t.

Probalby new.h may be removed completely.
This commit is contained in:
Cristian Maglie 2014-09-06 12:37:57 +02:00
parent 07e3e83424
commit b0b83625c1

View File

@ -20,7 +20,7 @@
#ifndef Printable_h
#define Printable_h
#include <new.h>
#include <stdlib.h>
class Print;