Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 3 Oct 2013 00:47:30 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r329133 - head/games/lordsawar/files
Message-ID:  <201310030047.r930lU9D043354@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: marino
Date: Thu Oct  3 00:47:29 2013
New Revision: 329133
URL: http://svnweb.freebsd.org/changeset/ports/329133

Log:
  games/lordsawar: Fix c++ -fpermissive error on gcc 4.7+

Added:
  head/games/lordsawar/files/patch-src_LocationList.h   (contents, props changed)

Added: head/games/lordsawar/files/patch-src_LocationList.h
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/games/lordsawar/files/patch-src_LocationList.h	Thu Oct  3 00:47:29 2013	(r329133)
@@ -0,0 +1,11 @@
+--- src/LocationList.h.orig	2010-05-11 08:50:34.000000000 +0000
++++ src/LocationList.h
+@@ -55,7 +55,7 @@ template<class T> class LocationList : p
+ 
+   void add(T t)
+     {
+-      push_back(t);
++      this->push_back(t);
+       d_id[t->getId()] = t;
+       int size = t->getSize();
+       for (int i = 0; i < size; i++)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310030047.r930lU9D043354>