repo.or.cz
/
xapian.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix build with xapian-core < 1.4.10
[xapian.git]
/
search-xapian
/
XS
/
BoolWeight.xs
blob
9e8d39e89f7a65c5561a568c6daebb0d94dfe6e3
1
MODULE = Search::Xapian PACKAGE = Search::Xapian::BoolWeight
2
3
PROTOTYPES: ENABLE
4
5
BoolWeight *
6
new1()
7
CODE:
8
try {
9
RETVAL = new BoolWeight();
10
} catch (...) {
11
handle_exception();
12
}
13
OUTPUT:
14
RETVAL
15
16
void
17
BoolWeight::DESTROY()