summaryrefslogtreecommitdiff
blob: 3ac983fa3ef21c7e7a119c46cee2531777525248 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
http://bugs.gentoo.org/220193

--- libMoaggCore/src/LevelReader.cpp
+++ libMoaggCore/src/LevelReader.cpp
@@ -1,4 +1,5 @@
 #include <sstream>
+#include <cstring>
 
 #include "Exception.h"
 #include "Configuration.h"
--- libMoaggCore/src/System.cpp
+++ libMoaggCore/src/System.cpp
@@ -4,6 +4,7 @@
 #include <cerrno>
 #include <sstream>
 #include <list>
+#include <cstring>
 
 #include "Tools.h"
 #include "SyscallException.h"
--- libMoaggCore/src/Tools.cpp
+++ libMoaggCore/src/Tools.cpp
@@ -2,6 +2,7 @@
 #include <iostream>
 #include <sstream>
 #include <set>
+#include <cstdlib>
 
 #include "Exception.h"
 #include "Tools.h"
--- libMoaggGame/src/Tiles.cpp
+++ libMoaggGame/src/Tiles.cpp
@@ -2,6 +2,7 @@
 #include <cassert>
 #include <sstream>
 #include <iomanip>
+#include <memory>
 
 
 #include "Configuration.h"
--- testsuite/MyAssertionTraits.h
+++ testsuite/MyAssertionTraits.h
@@ -2,6 +2,7 @@
 #define MYASSERTIONTRAITS_H
 
 #include <cppunit/TestAssert.h>
+#include <cstring>
 
 CPPUNIT_NS_BEGIN
 
--- tools/convertmap.cpp
+++ tools/convertmap.cpp
@@ -3,6 +3,7 @@
 #include <memory>
 #include <list>
 #include <cassert>
+#include <cstdlib>
 
 #include "Matrix.h"
 #include "File.h"
--- tools/modifymap.cpp
+++ tools/modifymap.cpp
@@ -2,6 +2,7 @@
 #include <iostream>
 #include <memory>
 #include <list>
+#include <cstdlib>
 
 #include "Matrix.h"
 #include "File.h"