opnsense-ports/games/xevil/files/patch-cmn__area.cpp
Franco Fichtner 8cb1a96ede ports: pull in a snapshot of the FreeBSD ports tree
Taken from:	https://github.com/freebsd/freebsd-ports.git
Commit id:	5070672073b68be364139bc6b3a89100bd17d331
2014-11-09 14:03:21 +01: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));