diff options
author | Max Horn | 2009-01-30 05:25:17 +0000 |
---|---|---|
committer | Max Horn | 2009-01-30 05:25:17 +0000 |
commit | 341bc64aaf5aebe299aa736f5584d647daa781a9 (patch) | |
tree | 5fe54f83b47d4e2dd536d2d0cc4ddcafe8c13897 /common | |
parent | 7cb437b56f95bff06b0c79be93cd619b95662346 (diff) | |
download | scummvm-rg350-341bc64aaf5aebe299aa736f5584d647daa781a9.tar.gz scummvm-rg350-341bc64aaf5aebe299aa736f5584d647daa781a9.tar.bz2 scummvm-rg350-341bc64aaf5aebe299aa736f5584d647daa781a9.zip |
do not include common/debug.h from common/util.h
svn-id: r36143
Diffstat (limited to 'common')
-rw-r--r-- | common/file.cpp | 1 | ||||
-rw-r--r-- | common/mutex.cpp | 1 | ||||
-rw-r--r-- | common/rect.h | 1 | ||||
-rw-r--r-- | common/unarj.cpp | 1 | ||||
-rw-r--r-- | common/util.h | 1 | ||||
-rw-r--r-- | common/xmlparser.h | 1 |
6 files changed, 5 insertions, 1 deletions
diff --git a/common/file.cpp b/common/file.cpp index 0cec608d89..69f4a4a31b 100644 --- a/common/file.cpp +++ b/common/file.cpp @@ -24,6 +24,7 @@ */ #include "common/archive.h" +#include "common/debug.h" #include "common/file.h" #include "common/fs.h" #include "common/util.h" diff --git a/common/mutex.cpp b/common/mutex.cpp index 6205de405b..8ebfa2254b 100644 --- a/common/mutex.cpp +++ b/common/mutex.cpp @@ -23,6 +23,7 @@ * */ +#include "common/debug.h" #include "common/mutex.h" #include "common/system.h" diff --git a/common/rect.h b/common/rect.h index f17db1ca6c..5d91fe496d 100644 --- a/common/rect.h +++ b/common/rect.h @@ -28,6 +28,7 @@ #include "common/scummsys.h" #include "common/util.h" +#include "common/debug.h" namespace Common { diff --git a/common/unarj.cpp b/common/unarj.cpp index 4a969a6ef0..428b4a426e 100644 --- a/common/unarj.cpp +++ b/common/unarj.cpp @@ -29,6 +29,7 @@ #include "common/scummsys.h" #include "common/archive.h" +#include "common/debug.h" #include "common/util.h" #include "common/unarj.h" diff --git a/common/util.h b/common/util.h index 65d288d6f0..2cb9b8a722 100644 --- a/common/util.h +++ b/common/util.h @@ -27,7 +27,6 @@ #include "common/scummsys.h" #include "common/str.h" -#include "common/debug.h" #ifdef MIN #undef MIN diff --git a/common/xmlparser.h b/common/xmlparser.h index 08f4565b11..c3eb68ca78 100644 --- a/common/xmlparser.h +++ b/common/xmlparser.h @@ -29,6 +29,7 @@ #include "common/scummsys.h" #include "common/stream.h" +#include "common/list.h" #include "common/hashmap.h" #include "common/hash-str.h" #include "common/stack.h" |