Date: Fri, 9 Jan 2015 17:55:10 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r376627 - head/finance/openhbci/files Message-ID: <201501091755.t09HtAw4090734@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Fri Jan 9 17:55:09 2015 New Revision: 376627 URL: https://svnweb.freebsd.org/changeset/ports/376627 QAT: https://qat.redports.org/buildarchive/r376627/ Log: Allow building with libc++ r224926 PR: ports/196625 Submitted by: dim@ Added: head/finance/openhbci/files/patch-src_openhbci_core_bank.cpp (contents, props changed) head/finance/openhbci/files/patch-src_openhbci_core_bank.h (contents, props changed) Added: head/finance/openhbci/files/patch-src_openhbci_core_bank.cpp ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/openhbci/files/patch-src_openhbci_core_bank.cpp Fri Jan 9 17:55:09 2015 (r376627) @@ -0,0 +1,11 @@ +--- src/openhbci/core/bank.cpp.orig 2003-04-25 01:45:54 UTC ++++ src/openhbci/core/bank.cpp +@@ -39,7 +39,7 @@ instituteMessage::instituteMessage() + instituteMessage::~instituteMessage(){ + } + +-const bool instituteMessage::operator==(const instituteMessage &msg) { ++bool instituteMessage::operator==(const instituteMessage &msg) const { + return (_date == msg._date && + 0 == _time.compare(msg._time) && + _subject == msg._subject && Added: head/finance/openhbci/files/patch-src_openhbci_core_bank.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/finance/openhbci/files/patch-src_openhbci_core_bank.h Fri Jan 9 17:55:09 2015 (r376627) @@ -0,0 +1,11 @@ +--- src/openhbci/core/bank.h.orig 2003-06-13 21:50:00 UTC ++++ src/openhbci/core/bank.h +@@ -97,7 +97,7 @@ public: + instituteMessage(); + ~instituteMessage(); + +- const bool operator==(const instituteMessage &msg); ++ bool operator==(const instituteMessage &msg) const; + + /** Returns the Date of arrival. */ + const Date &date() const { return _date;};
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201501091755.t09HtAw4090734>