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 4801801ef9
commit df778925a8
1 changed files with 1 additions and 1 deletions

View File

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