diff options
Diffstat (limited to 'games/xevil/files/patch-cmn__area.cpp')
-rw-r--r-- | games/xevil/files/patch-cmn__area.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/games/xevil/files/patch-cmn__area.cpp b/games/xevil/files/patch-cmn__area.cpp new file mode 100644 index 000000000000..1c268954c8a0 --- /dev/null +++ b/games/xevil/files/patch-cmn__area.cpp @@ -0,0 +1,17 @@ +--- cmn/area.cpp.orig 2012-05-27 06:52:29.000000000 +0900 ++++ cmn/area.cpp 2012-05-27 06:53:11.000000000 +0900 +@@ -34,12 +34,13 @@ + extern "C" { + #include <limits.h> // For INT_MAX + } +-#include <iostream.h> ++#include <iostream> + #include "utils.h" + #include "coord.h" + #include "area.h" + + ++using namespace std; + + Size Area::operator - (const Area &other) const { + assert ((shape == AR_RECT) && (other.shape == AR_RECT)); |