View Issue Details

IDProjectCategoryView StatusLast Update
0005354ardourbugspublic2013-03-01 02:20
ReporterTheCranston Assigned To 
PrioritynormalSeverityminorReproducibilityalways
Status newResolutionopen 
Summary0005354: evoral/PatchChange.hpp fails to compile
DescriptionFollowing new guide for OSX native build. From SVN 14110 evoral will not compile on osx 10.8.2. Made quick change below and compile works...


Index: libs/evoral/evoral/PatchChange.hpp
===================================================================
--- libs/evoral/evoral/PatchChange.hpp (revision 14110)
+++ libs/evoral/evoral/PatchChange.hpp (working copy)
@@ -123,7 +123,7 @@
             return time() < o.time();
         }
 
- if (bank != o.bank()) {
+ if (bank() != o.bank()) {
             return bank() < o.bank();
         }
Additional Informationnot sure if I broke something with this change. hope I'm helping here.
TagsNo tags attached.

Activities

There are no notes attached to this issue.

Issue History

Date Modified Username Field Change
2013-03-01 02:20 TheCranston New Issue