1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00

Allow building with libc++ r224926

Submitted by:	dim@
This commit is contained in:
Antoine Brodin 2015-01-10 19:03:28 +00:00
parent e286264622
commit 5366017ee2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=376722

View File

@ -0,0 +1,11 @@
--- gtk2_ardour/automation_selectable.h.orig 2009-02-24 12:37:42 UTC
+++ gtk2_ardour/automation_selectable.h
@@ -36,7 +36,7 @@ struct AutomationSelectable : public Sel
AutomationSelectable (nframes_t s, nframes_t e, double l, double h, TimeAxisView& atv)
: start (s), end (e), low_fract (l), high_fract (h), track (atv) {}
- bool operator== (const AutomationSelectable& other) {
+ bool operator== (const AutomationSelectable& other) const {
return start == other.start &&
end == other.end &&
low_fract == other.low_fract &&