Changes between Initial Version and Version 1 of Ticket #47482, comment 4
- Timestamp:
- Apr 18, 2015, 11:09:37 PM (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #47482, comment 4
initial v1 1 1 On fink, I am able to comment out the offending line... 2 2 3 {{{ 3 4 p->searches.remove(search); 5 }}} 4 6 5 7 in strigi-0.7.8/strigidaemon/bin/daemon/xesam/xesamsession.cpp without any additional regressions showing up in the test suite. 6 8 This allows Apple Clang 6.1 to build the package. The current declaration for this in strigi-0.7.8/strigidaemon/bin/daemon/xesam/xesamsearch.h 7 9 10 {{{ 8 11 bool operator==(const XesamSearch& xs) { return p == xs.p; } 12 }}} 9 13 10 14 does match the usage of that call according to llvm.org clang 3.5 or later.