Allow building with libc++ r224926
PR: ports/196625 Submitted by: dim@
This commit is contained in:
parent
2bba679987
commit
c74aaf147a
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=376627
11
finance/openhbci/files/patch-src_openhbci_core_bank.cpp
Normal file
11
finance/openhbci/files/patch-src_openhbci_core_bank.cpp
Normal file
@ -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 &&
|
11
finance/openhbci/files/patch-src_openhbci_core_bank.h
Normal file
11
finance/openhbci/files/patch-src_openhbci_core_bank.h
Normal file
@ -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;};
|
Loading…
Reference in New Issue
Block a user