Fix build with xapian-core < 1.4.10
[xapian.git] / search-xapian / XS / Stopper.xs
blob5ed4d0abe710a99997868190ba44002b30485e5a
1 MODULE = Search::Xapian                 PACKAGE = Search::Xapian::Stopper
3 PROTOTYPES: ENABLE
5 bool
6 Stopper::stop_word(term)
7         string term;
8         CODE:
9                 RETVAL = (*THIS)(term);
10         OUTPUT:
11                 RETVAL
13 void
14 Stopper::DESTROY()