aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBertrand Augereau2008-03-30 12:06:47 +0000
committerBertrand Augereau2008-03-30 12:06:47 +0000
commitde5fca43e617766b90018609465c1ae179b4345f (patch)
treef1462e74beb60083363489afe37fb7cdedfad5a0
parent7624cf28ab6e0f6848726c48afd67ef3350ff923 (diff)
downloadscummvm-rg350-de5fca43e617766b90018609465c1ae179b4345f.tar.gz
scummvm-rg350-de5fca43e617766b90018609465c1ae179b4345f.tar.bz2
scummvm-rg350-de5fca43e617766b90018609465c1ae179b4345f.zip
#include <cstring> => #include <string.h> (for size_t)
svn-id: r31325
-rw-r--r--common/memorypool.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/memorypool.h b/common/memorypool.h
index af1c363234..b9c0b38595 100644
--- a/common/memorypool.h
+++ b/common/memorypool.h
@@ -26,7 +26,7 @@
#ifndef COMMON_MEMORYPOOL_H
#define COMMON_MEMORYPOOL_H
-#include <cstring>
+#include <string.h>
#include "common/array.h"
namespace Common