From: Mike D. Lowis Date: Tue, 19 Jun 2012 20:28:58 +0000 (-0400) Subject: Delete common.h X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=710fe35e72ca46cd92054c2969596fb9ad56befd;p=archive%2Fdlang.git Delete common.h --- diff --git a/source/common.h b/source/common.h deleted file mode 100644 index 10f8c76..0000000 --- a/source/common.h +++ /dev/null @@ -1,10 +0,0 @@ -#ifndef COMMON_H -#define COMMON_H - -#ifdef DEBUG - #include "cork.h" -#else - #define _new new -#endif - -#endif diff --git a/source/dllexer/dllexer.cpp b/source/dllexer/dllexer.cpp index 3d58fd1..1c850d7 100644 --- a/source/dllexer/dllexer.cpp +++ b/source/dllexer/dllexer.cpp @@ -1,6 +1,5 @@ #include "dllexer.h" #include "exception.h" -#include "common.h" using namespace std; diff --git a/source/dlparser/dlparser.cpp b/source/dlparser/dlparser.cpp index d328d3e..9c19380 100644 --- a/source/dlparser/dlparser.cpp +++ b/source/dlparser/dlparser.cpp @@ -1,6 +1,5 @@ #include "dlparser.h" #include "exception.h" -#include "common.h" #include "expprocessor.h" using namespace std; diff --git a/source/main.cpp b/source/main.cpp index 69b70b6..87e7bd7 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -3,7 +3,6 @@ #include #include #include "dlparser.h" -#include "common.h" #include "options.h" #include "astprinter.h"