freebsd-ports/games/pipenightdreams/files/patch-pointer.cpp
Eric Anholt 912a0e2310 Unbreak with new GCC by fixing bad C++ code.
PR:		77809
Submitted by:	self
Approved by:	maintainer timeout (2 months)
2005-04-23 21:06:40 +00:00

11 lines
291 B
C++

--- src/pointer.cpp.orig Sat Jan 1 14:44:34 2005
+++ src/pointer.cpp Sat Jan 1 14:44:44 2005
@@ -17,7 +17,7 @@
#include "pointer.h"
-Pointer::Pointer(int row=0, int column=0){
+Pointer::Pointer(int row, int column){
this->row=row;
this->column=column;
this->moved_flag=true;