svn commit: r413943 - branches/2016Q2/audio/taglookup/files
Thomas Zander
riggs at FreeBSD.org
Sun Apr 24 13:57:23 UTC 2016
Author: riggs
Date: Sun Apr 24 13:57:21 2016
New Revision: 413943
URL: https://svnweb.freebsd.org/changeset/ports/413943
Log:
MFH: r413942
Fix build with libc++ 3.8.0
PR: 208490
Submitted by: dim
Approved by: ports-secteam (build fix blanket), maintainer timeout
Modified:
branches/2016Q2/audio/taglookup/files/patch-tag.cpp
Directory Properties:
branches/2016Q2/ (props changed)
Modified: branches/2016Q2/audio/taglookup/files/patch-tag.cpp
==============================================================================
--- branches/2016Q2/audio/taglookup/files/patch-tag.cpp Sun Apr 24 13:54:48 2016 (r413942)
+++ branches/2016Q2/audio/taglookup/files/patch-tag.cpp Sun Apr 24 13:57:21 2016 (r413943)
@@ -20,3 +20,14 @@
return new_string;
} // toUTF8String
+@@ -166,8 +167,8 @@ namespace TagLookup
+
+ bool operator() (const FileRefLengthPair &f1, const FileRefLengthPair &f2)
+ {
+- if( abs(f1.second - x_) <
+- abs(f2.second - x_) )
++ if( abs((int)(f1.second - x_)) <
++ abs((int)(f2.second - x_)) )
+ return true;
+ else
+ return false;
More information about the svn-ports-all
mailing list