Displaying 3 results from an estimated 3 matches for "min_wt".
Did you mean:
min_t
2013 Apr 26
1
Compiling Xapian within a Cocoa project
...luded from /Users/hat/Projects/OCXapian/OCXapian/OXAppDelegate.h:10:
In file included from /opt/local/include/xapian.h:50:
/opt/local/include/xapian/postingsource.h:223:43: error: too many arguments provided to function-like macro invocation
virtual bool check(Xapian::docid did, Xapian::weight min_wt);
^
/opt/local/include/xapian/postingsource.h:223:5: error: 'virtual' can only appear on non-static member functions
virtual bool check(Xapian::docid did, Xapian::weight min_wt);
^
/opt/local/include/xapian/postingsource.h:385:41: error:...
2014 Apr 13
2
Adding an external library to Xapian
...sort_by == VAL_REL)) {
throw Xapian::UnimplementedError("Use of a percentage cutoff while sorting primary by value isn't currently supported");
@@ -701,6 +714,7 @@
const RSet & rset, int flags, double k,
const ExpandDecider * edecider, Xapian::weight min_wt) const
{
+ cout << "In Enquire::Internal::get_eset : 6 args" << endl;
LOGCALL(MATCH, ESet, "Enquire::Internal::get_eset", maxitems | rset | flags | k | edecider | min_wt);
if (maxitems == 0 || rset.empty()) {
@@ -1012,6 +1026,15 @@
const MatchDecide...
2014 Apr 13
2
Adding an external library to Xapian
My code is not on Github. I am using the tarball as of now. The following
it the error that occurred:
http://pastebin.com/cVJrjUZX
On Sun, Apr 13, 2014 at 8:16 PM, James Aylett <james-xapian at tartarus.org>wrote:
> On 13 Apr 2014, at 15:37, Pallavi Gudipati <pallavigudipati at gmail.com>
> wrote:
>
> > A linker error is encountered even after following the above