freebsd-ports/games/xevil/files/patch-cmn::area.cpp
Marcelo Araujo 5ba24ed896 - Update MASTER_SITES.
- Fix build using CLANG.
- Add LICENSE.
- Add MAKE_JOBS_SAFE.

PR:		ports/172010
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
2012-12-14 07:16:20 +00:00

17 lines
426 B
C++

--- 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));